Current Path : /storage/v11800/healthcaremarketing/

Linux v11800 5.3.0-1023-aws #25~18.04.1-Ubuntu SMP Fri Jun 5 15:19:18 UTC 2020 aarch64

Upload File :
Current File : /storage/v11800/healthcaremarketing/.db.sql
-- MariaDB dump 10.19  Distrib 10.6.9-MariaDB, for debian-linux-gnu (aarch64)
--
-- Host: localhost    Database: healthcaremarketingdb
-- ------------------------------------------------------
-- Server version	10.6.9-MariaDB-1:10.6.9+maria~ubu2004

/*!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 utf8 */;
/*!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 `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

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

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT 0,
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_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))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2023-07-10 12:18:29','2023-07-10 12:18:29','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://en.gravatar.com/\">Gravatar</a>.',0,'1','','comment',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_e_events`
--

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

--
-- Dumping data for table `wp_e_events`
--

LOCK TABLES `wp_e_events` WRITE;
/*!40000 ALTER TABLE `wp_e_events` DISABLE KEYS */;
INSERT INTO `wp_e_events` VALUES (1,'{\"event\":\"modal load\",\"version\":\"\",\"details\":\"{\\\"placement\\\":\\\"Onboarding wizard\\\",\\\"step\\\":\\\"account\\\",\\\"user_state\\\":\\\"anon\\\"}\",\"ts\":\"2023-07-10T18:13:02.180-06:30\"}','2023-07-10 18:13:02');
/*!40000 ALTER TABLE `wp_e_events` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_links`
--

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

--
-- Dumping data for table `wp_links`
--

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

--
-- Table structure for table `wp_options`
--

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

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','https://health.ideascloud.in','yes'),(2,'home','https://health.ideascloud.in','yes'),(3,'blogname','Health Cloud','yes'),(4,'blogdescription','Your Healthcare Digital Marketing Agency','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','wp@dxpsites.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','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','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','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','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:133:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"elementskit-content/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:55:\"elementskit-content/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:75:\"elementskit-content/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"elementskit-content/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:70:\"elementskit-content/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:51:\"elementskit-content/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"elementskit-content/(.+?)/embed/?$\";s:52:\"index.php?elementskit_content=$matches[1]&embed=true\";s:38:\"elementskit-content/(.+?)/trackback/?$\";s:46:\"index.php?elementskit_content=$matches[1]&tb=1\";s:46:\"elementskit-content/(.+?)/page/?([0-9]{1,})/?$\";s:59:\"index.php?elementskit_content=$matches[1]&paged=$matches[2]\";s:53:\"elementskit-content/(.+?)/comment-page-([0-9]{1,})/?$\";s:59:\"index.php?elementskit_content=$matches[1]&cpage=$matches[2]\";s:42:\"elementskit-content/(.+?)(?:/([0-9]+))?/?$\";s:58:\"index.php?elementskit_content=$matches[1]&page=$matches[2]\";s:38:\"metform-form/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"metform-form/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"metform-form/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"metform-form/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"metform-form/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"metform-form/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"metform-form/(.+?)/embed/?$\";s:45:\"index.php?metform-form=$matches[1]&embed=true\";s:31:\"metform-form/(.+?)/trackback/?$\";s:39:\"index.php?metform-form=$matches[1]&tb=1\";s:39:\"metform-form/(.+?)/page/?([0-9]{1,})/?$\";s:52:\"index.php?metform-form=$matches[1]&paged=$matches[2]\";s:46:\"metform-form/(.+?)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?metform-form=$matches[1]&cpage=$matches[2]\";s:35:\"metform-form/(.+?)(?:/([0-9]+))?/?$\";s:51:\"index.php?metform-form=$matches[1]&page=$matches[2]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=156&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:10:{i:0;s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";i:1;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:2;s:23:\"elementor/elementor.php\";i:3;s:37:\"elementskit-lite/elementskit-lite.php\";i:4;s:35:\"envato-elements/envato-elements.php\";i:5;s:51:\"header-footer-elementor/header-footer-elementor.php\";i:6;s:39:\"jeg-elementor-kit/jeg-elementor-kit.php\";i:7;s:20:\"lottiefiles/host.php\";i:8;s:19:\"metform/metform.php\";i:9;s:43:\"template-kit-import/template-kit-import.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','5.5','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','hello-elementor','yes'),(41,'stylesheet','hello-elementor','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','55853','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','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','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:0:{}','yes'),(77,'widget_text','a:0:{}','yes'),(78,'widget_rss','a:0:{}','yes'),(79,'uninstall_plugins','a:1:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','156','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','295','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','1','yes'),(91,'admin_email_lifespan','1704543509','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','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','53496','yes'),(100,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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: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;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','1','no'),(103,'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'),(104,'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'),(105,'cron','a:10:{i:1688991510;a:6:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s: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: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;}}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:1688992089;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1688992091;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:1688992149;a:1:{s:28:\"wp_update_comment_type_batch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1688992977;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:1689077910;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;}}}i:1689078490;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1691599831;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1692802087;a:1:{s:34:\"elementor_1_elementor_updater_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:43:\"elementor_1_elementor_updater_cron_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}s:7:\"version\";i:2;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'_transient_doing_cron','1719263469.5966870784759521484375','yes'),(128,'ai1wm_secret_key','ucvzTkEgLwdF','yes'),(129,'wp_cli_login','{\"endpoint\":\"30faa6a7\",\"version\":\"^1.2\"}','yes'),(133,'ai1wmue_plugin_key','1bebc005-bc23-4932-8b3f-1b4b72ee066a','yes'),(151,'_site_transient_ai1wm_last_check_for_updates','1691642330','no'),(152,'ai1wm_updater','a:1:{s:43:\"all-in-one-wp-migration-unlimited-extension\";a:13:{s:4:\"name\";s:19:\"Unlimited Extension\";s:4:\"slug\";s:19:\"unlimited-extension\";s:8:\"homepage\";s:51:\"https://servmask.com/extensions/unlimited-extension\";s:13:\"download_link\";s:29:\"https://servmask.com/purchase\";s:7:\"version\";s:4:\"2.52\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:1:{s:11:\"description\";s:259:\"<ul class=\"description\"><li>Remove the import limit of 512MB</li><li>Lifetime license with lifetime updates</li><li>Use on any number of websites that you own</li><li>Unlimited Extension included</li><li>WP CLI commands</li><li>Premium support</li></ul><br />\";}s:7:\"banners\";a:2:{s:3:\"low\";s:65:\"https://servmask.com/img/products/unlimited-extension-772x250.png\";s:4:\"high\";s:66:\"https://servmask.com/img/products/unlimited-extension-1544x500.png\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:65:\"https://servmask.com/img/products/unlimited-extension-128x128.png\";s:2:\"2x\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";s:7:\"default\";s:65:\"https://servmask.com/img/products/unlimited-extension-256x256.png\";}s:6:\"rating\";i:99;s:11:\"num_ratings\";i:309;s:10:\"downloaded\";i:40189;}}','yes'),(153,'recently_activated','a:0:{}','yes'),(158,'theme_mods_twentytwentythree','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1688992312;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'),(159,'current_theme','Hello Elementor','yes'),(160,'theme_mods_hello-elementor','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;}','yes'),(161,'theme_switched','','yes'),(162,'hello_theme_version','2.8.1','yes'),(163,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1719263488;s:7:\"checked\";a:4:{s:15:\"hello-elementor\";s:5:\"2.8.1\";s:16:\"twentytwentyfour\";s:3:\"1.1\";s:17:\"twentytwentythree\";s:3:\"1.4\";s:15:\"twentytwentytwo\";s:3:\"1.7\";}s:8:\"response\";a:1:{s:15:\"hello-elementor\";a:6:{s:5:\"theme\";s:15:\"hello-elementor\";s:11:\"new_version\";s:5:\"3.1.0\";s:3:\"url\";s:45:\"https://wordpress.org/themes/hello-elementor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/hello-elementor.3.1.0.zip\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.4\";}}s:9:\"no_update\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.1.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.4.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.7.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(166,'WPLANG','','yes'),(167,'new_admin_email','wp@dxpsites.com','yes'),(179,'elementor_active_kit','58','yes'),(180,'elementor_font_display','swap','yes'),(183,'elementor_version','3.15.2','yes'),(184,'elementor_install_history','a:3:{s:6:\"3.14.1\";i:1688992978;s:6:\"3.15.1\";i:1691599644;s:6:\"3.15.2\";i:1691642656;}','yes'),(185,'elementor_events_db_version','1.0.0','no'),(186,'elementor_onboarded','1','yes'),(187,'elementskit-lite__banner_last_check','1691642334','yes'),(188,'elementskit-lite__banner_data','O:8:\"stdClass\":10:{s:8:\"10010506\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010506;s:5:\"title\";s:32:\"Wpmet Summer sale 2023 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010508\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010508;s:5:\"title\";s:31:\"Wpmet Summer sale 2023 own page\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010418\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010418;s:5:\"title\";s:32:\"Wpmet Summer Ownpage Notice 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1685577600;s:3:\"end\";i:1686787200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:26:\"https://wpmet.com/birthday\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:539:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Birthday sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $221 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 45% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2023/06/notice.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10008094\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008094;s:5:\"title\";s:24:\"GetGenie Cross Promotion\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1678492800;s:3:\"end\";i:1688083200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:35:\"https://wpmet.com/getgenie-org-page\";s:11:\"button_text\";s:14:\"Get Yours Now!\";s:11:\"notice_body\";s:766:\"<h2>We are delighted to announce that <span style=\"color: #2471b1;\"><strong style=\"color: #2471b1; text-transform: uppercase; font-size: 14px;\">GetGenie AI is now available</strong></span>!</h2>\r\n<h4 style=\"font-size: 16px; margin-left: -2px;\"><b>Let&#039;s write your content 20x faster with AI. Also, Research </b><b>keywords</b><b>, A</b><b>nalyse your </b><b>competitors, head 2 Head analysis,  content writing with ai, and search engine ranking with NLP Keywords optimization—all within WordPress.</b> Additionally, <b>you can chat</b> with the GENIE AI about your needs.</h4>\r\n<span style=\"color: #dd0cd9;\">Join now and get <span style=\"font-weight: 400;\"><strong>1500 words for free every month</strong></span></span><span style=\"color: #dd0cd9;\">. </span>\";s:12:\"notice_image\";s:79:\"https://api.wpmet.com/auth/wp-content/uploads/2023/03/genie_compare_image_4.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:20:\"background: #e9fce5;\";s:10:\"unique_key\";s:20:\"getgenie-cross-promo\";}}s:8:\"10008085\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008085;s:5:\"title\";s:27:\"Wpmet Notice Dashboard 2022\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1671580800;s:3:\"end\";i:1673740800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/holiday22/notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:517:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Holiday Deals from Wpmet</span></strong> <br>\r\n<strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $1670 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social — or get them <b>all in super-saver bundles to save 70% instantly!\r\n</b></p>\";s:12:\"notice_image\";s:70:\"https://api.wpmet.com/auth/wp-content/uploads/2022/11/70-OFF-wpmet.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:7:\"bfc2022\";}}s:8:\"10008083\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008083;s:5:\"title\";s:25:\"Wpmet Notice Ownpage 2022\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1671580800;s:3:\"end\";i:1673740800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/holiday22/notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:519:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Holiday Deals from Wpmet. </span></strong> <br>\r\n<strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $1670 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social — or get them <b>all in super-saver bundles to save 70% instantly!\r\n</b></p>\";s:12:\"notice_image\";s:70:\"https://api.wpmet.com/auth/wp-content/uploads/2022/11/70-OFF-wpmet.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:7:\"bfc2022\";}}s:8:\"10007775\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007775;s:5:\"title\";s:17:\"August Flash Sale\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:7:\"plugins\";s:5:\"start\";i:1661385600;s:3:\"end\";i:1661904000;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:30:\"https://wpmet.com/flash/banner\";s:12:\"banner_image\";s:75:\"https://api.wpmet.com/auth/wp-content/uploads/2022/08/InPlugin-Banner-4.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:76:\"background-color: #00003E; display: block; height: 60px; text-align: center;\";s:10:\"unique_key\";s:15:\"AugustFlashSale\";}}s:8:\"10007416\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007416;s:5:\"title\";s:28:\"Wpmet 4th of July Flash Sale\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:8:\"all_page\";s:5:\"start\";i:1656806400;s:3:\"end\";i:1657065600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:603:\"ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins altogether and save 70% instantly! Happy 4th of July Flash Sale!!\r\n\r\n<a href=\"https://wpmet.com/4-july/notice\"><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Claim Your Discount →&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:1337857,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0,&quot;14&quot;:{&quot;1&quot;:2,&quot;2&quot;:1136076},&quot;16&quot;:10,&quot;17&quot;:1,&quot;21&quot;:1,&quot;23&quot;:1}\" data-sheets-hyperlink=\"https://wpmet.com/deals\">Claim Your Discount →</span></a>\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2022/07/Notice.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:13:\"4thJulybanner\";}}s:8:\"10007174\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007174;s:5:\"title\";s:31:\"Wpmet Birthday Campaign Ownpage\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:8:\"all_page\";s:5:\"start\";i:1653868800;s:3:\"end\";i:1655942400;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:261:\"Wpmet\'s Birthday Sale is going on! Enjoy limited-time discounts of up to 50% on each of our PRO plugins — ElementsKit , ShopEngine, MetForm, WP Social, WP Ultimate Review. Hurry up!\r\n\r\n<a href=\"https://wpmet.com/notice/birthday-deal\">Get Your Discount →</a>\";s:12:\"notice_image\";s:76:\"https://api.wpmet.com/auth/wp-content/uploads/2022/05/InPlugin-Notice-50.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:14:\"birthdaybanner\";}}s:8:\"10007139\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007139;s:5:\"title\";s:31:\"Wpmet Summer Campaign Own Pages\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1650326400;s:3:\"end\";i:1651276800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:233:\"ElementsKit , ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins altogether and save 70% instantly throughout this Summer Sale!\r\n\r\n<a href=\"https://wpmet.com/notice/summer-sale\">Get Your Discount →</a>\";s:12:\"notice_image\";s:75:\"https://api.wpmet.com/auth/wp-content/uploads/2022/04/InPlugin-Notice-1.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:12:\"summerbanner\";}}}','yes'),(189,'elementskit-lite_install_date','2023-07-10 12:43:06','yes'),(190,'_elementor_installed_time','1688992986','yes'),(191,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:19:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:19:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:19:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:19:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:19:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:19:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:19:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:19:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:19:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:19:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:19:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:19:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:19:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:19:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:19:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:19:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:19:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:19:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:19:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:19:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:19:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:19:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:19:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:19:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:19:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:19:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:19:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:19:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:19:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:19:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:19:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:19:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:19:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:19:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:19:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:19:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:19:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:19:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:19:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:19:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:19:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:19:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:19:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:19:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:19:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:19:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:19:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:19:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:19:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:19:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:19:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:19:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:19:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:19:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:19:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:19:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:19:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:19:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:19:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:19:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:19:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:19:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:19:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:19:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:19:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:19:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:19:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:19:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:19:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:19:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:19:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:19:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:19:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:19:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:19:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:19:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:19:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:19:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:19:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:19:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:19:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:19:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:19:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:19:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:19:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:19:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:19:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:19:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:19:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:19:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:19:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:19:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:19:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:19:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:19:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:19:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:19:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:19:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:19:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:19:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:19:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:19:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:19:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:19:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:19:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:19:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:19:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:19:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:19:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:19:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:19:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:19:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:19:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:19:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:19:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:19:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:19:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:19:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:19:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:19:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:19:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:19:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:19:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:19:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:19:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:19:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:19:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:19:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:19:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:19:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:19:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:19:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:19:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:19:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:19:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:19:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:19:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:19:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:19:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:19:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:19:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:19:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:19:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:19:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:19:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:19:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:19:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:19:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:19:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:19:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:19:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:19:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:19:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:19:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:19:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:19:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:19:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:19:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:19:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:19:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:19:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:19:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:19:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:19:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:19:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:19:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:19:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:19:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:19:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:19:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:19:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:19:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:19:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:19:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:19:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:19:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:19:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:19:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:19:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:19:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:19:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:19:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:19:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:19:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:19:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:19:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:19:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:19:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:19:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:19:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:19:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:19:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:19:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:19:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:19:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:19:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:19:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:19:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:19:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:19:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:19:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:19:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:19:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:19:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:19:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:19:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:19:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:19:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:19:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:19:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:19:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:19:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:19:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:19:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:19:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:19:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:19:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:19:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:19:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:19:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:19:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:19:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:19:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:19:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:19:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:19:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:19:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:19:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:19:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:19:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:19:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:19:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:19:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:19:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:19:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:19:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:19:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:19:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:19:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:19:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:19:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:19:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:19:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:19:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:19:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:19:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:19:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:19:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:19:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:19:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:19:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:19:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:19:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:19:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:19:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:19:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:19:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:19:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:19:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:19:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:19:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:19:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:19:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:19:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:19:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:19:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:19:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:19:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:19:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:19:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:19:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:19:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:19:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:19:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:19:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:19:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:19:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:19:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:19:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:19:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:19:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:19:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:19:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:19:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:19:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:19:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:19:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:19:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:19:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:19:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:19:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:19:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:19:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:19:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:19:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:19:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:19:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:19:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:19:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:19:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:19:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:19:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:19:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:19:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:19:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:19:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:19:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:19:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:19:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:19:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:19:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:19:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:19:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:19:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:19:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:19:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:19:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:19:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:19:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:19:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:19:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:19:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:19:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:19:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:19:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:19:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:19:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:19:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:19:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:19:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:19:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:19:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:19:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:19:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:19:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:19:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:19:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:19:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:19:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:19:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:19:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:19:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:19:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:19:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:19:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:19:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:19:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:19:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:19:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:19:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:19:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:19:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:19:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:19:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:19:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:19:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:19:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:19:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:19:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:19:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:19:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:19:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:19:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:19:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:19:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:19:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:19:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:19:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:19:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:19:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:19:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:19:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:19:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:19:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:19:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:19:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:19:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:19:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:19:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:19:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:19:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:19:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:19:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:19:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:19:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:19:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:19:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:19:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:19:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:19:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:19:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:19:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:19:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:19:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:19:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:19:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:19:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:19:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:19:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:19:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:19:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:19:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:19:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:19:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:19:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:19:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:19:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:19:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:19:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:19:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:19:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:19:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:19:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:19:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:19:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:19:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:19:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:19:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:19:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:19:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:19:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:19:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:19:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:19:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:19:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:19:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:19:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:19:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:19:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:19:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:19:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:19:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:19:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:19:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:19:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:19:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:19:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:19:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:19:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:19:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:19:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:19:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:19:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:19:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:19:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:19:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:19:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:19:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:19:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:19:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:19:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:19:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:19:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:19:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:19:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:19:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:19:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:19:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:19:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:19:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:19:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:19:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:19:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:19:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:19:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:19:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:19:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:19:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:19:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:19:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:19:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:19:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:19:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:19:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:19:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:19:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:19:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:19:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:19:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:19:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:19:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:19:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:19:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:19:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:19:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:19:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:19:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:19:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:19:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:19:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:19:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:19:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:19:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:19:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:19:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:19:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:19:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:19:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:19:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:19:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:19:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:19:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:19:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:19:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:19:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:19:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:19:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:19:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:19:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:19:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:19:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:19:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:19:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:19:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:19:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:19:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:19:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:19:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:19:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:19:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:19:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:19:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:19:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:19:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:19:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:19:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:19:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:19:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:19:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:19:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:19:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:19:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:19:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:19:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:19:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:19:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:19:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:19:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:19:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:19:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:19:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:19:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:19:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:19:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:19:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:19:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:19:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:19:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:19:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:19:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:19:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:19:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:19:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:19:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:19:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:19:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:19:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:19:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:19:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:19:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:19:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:19:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:19:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:19:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:19:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:19:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:19:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:19:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:19:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:19:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:19:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:19:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:19:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:19:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:19:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:19:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:19:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:19:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:19:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:19:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:19:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:19:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:19:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:19:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:19:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:19:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:19:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:19:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:19:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:19:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:19:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:19:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:19:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:19:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:19:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:19:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:19:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:19:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:19:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:19:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:19:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:19:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:19:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:19:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:19:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:19:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:19:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:19:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:19:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:19:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:19:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:19:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:19:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:19:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:19:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:19:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:19:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:19:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:19:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:19:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:19:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:19:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:19:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:19:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:19:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:19:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:19:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:19:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:19:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:19:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:19:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:19:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:19:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:19:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:19:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:19:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:19:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:19:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:19:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:19:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:19:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:19:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:19:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:19:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:19:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:19:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:19:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:19:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:19:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:19:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:19:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:19:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:19:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:19:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:19:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:19:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:19:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:19:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:19:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:19:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:19:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:19:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:19:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:19:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:19:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:19:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:19:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:19:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:19:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:19:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:19:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:19:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:19:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:19:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:19:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:19:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:19:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:19:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:19:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:19:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:19:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:19:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:19:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:19:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:19:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:19:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:19:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:19:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:19:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:19:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:19:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:19:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:19:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:19:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:19:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:19:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:19:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:19:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:19:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:19:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:19:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:19:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:19:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:19:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:19:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:19:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:19:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:19:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:19:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:19:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:19:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:19:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:19:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:19:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:19:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:19:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:19:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:19:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:19:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:19:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:19:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:19:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:19:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:19:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:19:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:19:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:19:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:19:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:19:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:19:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:19:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:19:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:19:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:19:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:19:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:19:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:19:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:19:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:19:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:19:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:19:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:19:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:19:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:19:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:19:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:19:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:19:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:19:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:19:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:19:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:19:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:19:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:19:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:19:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:19:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:19:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:19:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:19:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:19:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:19:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:19:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:19:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:19:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:19:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:19:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:19:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:19:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:19:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:19:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:19:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:19:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:19:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:19:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:19:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:19:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:19:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:19:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:19:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:19:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:19:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:19:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:19:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:19:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:19:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:19:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:19:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:19:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:19:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:19:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:19:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:19:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:19:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:19:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:19:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:19:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:19:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:19:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:19:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:19:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:19:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:19:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:19:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:19:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:19:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:19:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:19:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:19:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:19:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:19:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:19:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:19:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:19:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:19:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:19:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:19:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:19:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:19:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:19:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:19:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:19:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:19:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:19:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:19:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(192,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:73:\"AI 0.4 Release: Context Boosts A 58% Content Uplift for Improved Workflow\";s:7:\"excerpt\";s:163:\"Hitting creative walls & code roadblocks? Elementor AI\'s update creates a future where AI writes captivating copy with a 58% approval boost... what else can it do?\";s:7:\"created\";i:1716217283;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:155:\"https://elementor.com/blog/elementor-ai-enhanced-workflow-and-high-quality-results/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:97:\"Introducing Elementor 3.21: Loop Taxonomy Query for Listings, Performance Improvements, and More!\";s:7:\"excerpt\";s:160:\"Version 3.21 includes the ability to build listings for your categories and tags and significant performance improvements alongside an exciting new AI feature. \";s:7:\"created\";i:1714559068;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:152:\"https://elementor.com/blog/elementor-321-taxonomy-query-performance-improvement/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:71:\"6 Best WordPress Image Optimization Plugins of 2024 (+Real Image Tests)\";s:7:\"excerpt\";s:116:\"Explore the top 6 WordPress image optimization plugins of 2024 for faster site speed and better SEO with real tests.\";s:7:\"created\";i:1712656602;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:126:\"https://elementor.com/blog/image-optimization-plugins/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(195,'hfe_plugin_is_activated','yes','yes'),(196,'_hfe_db_version','1.6.35','yes'),(197,'bsf_analytics_installed_time','1688992993','no'),(200,'template_kit_import_version','1.0.14','yes'),(201,'template_kit_import_install_time','1688993085','yes'),(202,'_elementor_settings_update_time','1688993243','yes'),(203,'elementor_cpt_support','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(204,'elementor_disable_color_schemes','yes','yes'),(205,'elementor_disable_typography_schemes','yes','yes'),(206,'elementor_allow_tracking','no','yes'),(207,'elementor_google_maps_api_key','','yes'),(208,'elementor_css_print_method','external','yes'),(209,'elementor_editor_break_lines','','yes'),(210,'elementor_unfiltered_files_upload','1','yes'),(211,'elementor_google_font','1','yes'),(212,'elementor_load_fa4_shim','','yes'),(213,'elementor_meta_generator_tag','','yes'),(214,'elementor_experiment-e_font_icon_svg','default','yes'),(215,'elementor_experiment-container','default','yes'),(216,'elementor_experiment-container_grid','default','yes'),(217,'elementor_experiment-editor_v2','default','yes'),(218,'elementor_experiment-nested-elements','default','yes'),(219,'elementor_experiment-e_lazyload','default','yes'),(220,'elementor_experiment-e_global_styleguide','default','yes'),(221,'elementor_experiment-e_dom_optimization','default','yes'),(222,'elementor_experiment-e_optimized_assets_loading','default','yes'),(223,'elementor_experiment-e_optimized_css_loading','default','yes'),(224,'elementor_experiment-a11y_improvements','default','yes'),(225,'elementor_experiment-additional_custom_breakpoints','default','yes'),(226,'elementor_experiment-e_swiper_latest','default','yes'),(227,'elementor_experiment-hello-theme-header-footer','default','yes'),(228,'elementor_experiment-landing-pages','default','yes'),(233,'envato_elements_version','2.0.12','yes'),(234,'envato_elements_install_time','1688993304','yes'),(238,'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'),(239,'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'),(240,'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'),(255,'elementskit-lite__stories_last_check','1691599255','yes'),(256,'elementskit-lite__stories_data','O:8:\"stdClass\":10:{s:8:\"10010504\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010504;s:5:\"title\";s:22:\"Wpmet Summer Sale 2023\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:6:\"banner\";s:8:\"priority\";s:4:\"high\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"banner\";s:10:\"story_link\";s:23:\"https://wpmet.com/Sum23\";s:11:\"story_image\";s:75:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/summer_sale_story.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010500\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010500;s:5:\"title\";s:43:\"Benefits of Ai Chatbot for Customer Service\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:64:\"https://getgenie.ai/benefits-of-ai-chatbot-for-customer-service/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010499\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010499;s:5:\"title\";s:61:\"Ai Generated Content Plagiarism Detection: Step-by-Step Guide\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:62:\"https://getgenie.ai/ai-generated-content-plagiarism-detection/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010498\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010498;s:5:\"title\";s:65:\"Multilingual Content Creation: Breaking Language Barriers with Ai\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:58:\"https://getgenie.ai/multilingual-content-creation-with-ai/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010497\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010497;s:5:\"title\";s:56:\"How to Add Dual Button in WordPress (Step-By-Step-Guide)\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:47:\"https://wpmet.com/add-dual-button-in-wordpress/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010496\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010496;s:5:\"title\";s:57:\"How to Show a Post List in WordPress: Your Ultimate Guide\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:75:\"https://wpmet.com/how-to-show-a-post-list-in-wordpress-your-ultimate-guide/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010462\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010462;s:5:\"title\";s:57:\"How To Show Dribbble Feed On Your Website In 7 Easy Steps\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:44:\"https://wpmet.com/how-to-show-dribbble-feed/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010461\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010461;s:5:\"title\";s:44:\"How to Add Motion Text to WordPress Websites\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:55:\"https://wpmet.com/add-motion-text-to-wordpress-website/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010460\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010460;s:5:\"title\";s:59:\"How to Create a Particle Effect in WordPress [The Easy Way]\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:4:{i:0;s:16:\"elementskit-lite\";i:1;s:7:\"metform\";i:2;s:10:\"shopengine\";i:3;s:9:\"wp-social\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:63:\"https://wpmet.com/how-to-create-a-particle-effect-in-wordpress/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}s:8:\"10010459\";O:8:\"stdClass\":9:{s:2:\"id\";i:10010459;s:5:\"title\";s:49:\"What Are The Common Copywriting Mistakes to Avoid\";s:11:\"description\";s:0:\"\";s:7:\"plugins\";a:1:{i:0;s:8:\"getgenie\";}s:4:\"type\";s:4:\"news\";s:8:\"priority\";s:6:\"normal\";s:5:\"start\";b:0;s:3:\"end\";b:0;s:4:\"data\";O:8:\"stdClass\":6:{s:4:\"type\";s:4:\"news\";s:10:\"story_link\";s:57:\"https://getgenie.ai/common-copywriting-mistakes-to-avoid/\";s:11:\"story_image\";s:0:\"\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";}}}','yes'),(300,'metform__banner_last_check','1691642333','yes'),(301,'metform__banner_data','O:8:\"stdClass\":10:{s:8:\"10010506\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010506;s:5:\"title\";s:32:\"Wpmet Summer sale 2023 Dashboard\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010508\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010508;s:5:\"title\";s:31:\"Wpmet Summer sale 2023 own page\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1689552000;s:3:\"end\";i:1691625600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:32:\"https://wpmet.com/summer-sale-23\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:537:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Summer sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $174 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 30% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:66:\"https://api.wpmet.com/auth/wp-content/uploads/2023/07/notice-1.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10010418\";O:8:\"stdClass\":7:{s:2:\"id\";i:10010418;s:5:\"title\";s:32:\"Wpmet Summer Ownpage Notice 2023\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1685577600;s:3:\"end\";i:1686787200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:26:\"https://wpmet.com/birthday\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:539:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Birthday sales from Wpmet</span></strong></h3>\r\n<h3><strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $221 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 45% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — or get them <b>all in super-saver bundles to save 80% instantly!</b></p>\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2023/06/notice.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10008094\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008094;s:5:\"title\";s:24:\"GetGenie Cross Promotion\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1678492800;s:3:\"end\";i:1688083200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:35:\"https://wpmet.com/getgenie-org-page\";s:11:\"button_text\";s:14:\"Get Yours Now!\";s:11:\"notice_body\";s:766:\"<h2>We are delighted to announce that <span style=\"color: #2471b1;\"><strong style=\"color: #2471b1; text-transform: uppercase; font-size: 14px;\">GetGenie AI is now available</strong></span>!</h2>\r\n<h4 style=\"font-size: 16px; margin-left: -2px;\"><b>Let&#039;s write your content 20x faster with AI. Also, Research </b><b>keywords</b><b>, A</b><b>nalyse your </b><b>competitors, head 2 Head analysis,  content writing with ai, and search engine ranking with NLP Keywords optimization—all within WordPress.</b> Additionally, <b>you can chat</b> with the GENIE AI about your needs.</h4>\r\n<span style=\"color: #dd0cd9;\">Join now and get <span style=\"font-weight: 400;\"><strong>1500 words for free every month</strong></span></span><span style=\"color: #dd0cd9;\">. </span>\";s:12:\"notice_image\";s:79:\"https://api.wpmet.com/auth/wp-content/uploads/2023/03/genie_compare_image_4.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:20:\"background: #e9fce5;\";s:10:\"unique_key\";s:20:\"getgenie-cross-promo\";}}s:8:\"10008085\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008085;s:5:\"title\";s:27:\"Wpmet Notice Dashboard 2022\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1671580800;s:3:\"end\";i:1673740800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/holiday22/notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:517:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Holiday Deals from Wpmet</span></strong> <br>\r\n<strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $1670 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social — or get them <b>all in super-saver bundles to save 70% instantly!\r\n</b></p>\";s:12:\"notice_image\";s:70:\"https://api.wpmet.com/auth/wp-content/uploads/2022/11/70-OFF-wpmet.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:7:\"bfc2022\";}}s:8:\"10008083\";O:8:\"stdClass\":7:{s:2:\"id\";i:10008083;s:5:\"title\";s:25:\"Wpmet Notice Ownpage 2022\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:11:\"plugin_page\";s:5:\"start\";i:1671580800;s:3:\"end\";i:1673740800;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:34:\"https://wpmet.com/holiday22/notice\";s:11:\"button_text\";s:24:\"Claim Your Discount Now!\";s:11:\"notice_body\";s:519:\"<h3><strong style=\"color: #; text-transform: uppercase; font-size: 14px;\"><span style=\"color: #e60073;\">Holiday Deals from Wpmet. </span></strong> <br>\r\n<strong style=\"font-size: 24px; padding: 8px 0 5px; color: #; display: block;\">Save up to $1670 on Premium WordPress Plugins!</strong></h3>\r\n<p style=\"font-size: 16px; margin-left: -2px;\"><b>Get 35% discounts</b> on each of our PRO plugins — ElementsKit, ShopEngine, MetForm, WP Social — or get them <b>all in super-saver bundles to save 70% instantly!\r\n</b></p>\";s:12:\"notice_image\";s:70:\"https://api.wpmet.com/auth/wp-content/uploads/2022/11/70-OFF-wpmet.png\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:7:\"bfc2022\";}}s:8:\"10007775\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007775;s:5:\"title\";s:17:\"August Flash Sale\";s:4:\"type\";s:6:\"banner\";s:6:\"screen\";s:7:\"plugins\";s:5:\"start\";i:1661385600;s:3:\"end\";i:1661904000;s:4:\"data\";O:8:\"stdClass\":7:{s:4:\"type\";s:6:\"banner\";s:11:\"banner_link\";s:30:\"https://wpmet.com/flash/banner\";s:12:\"banner_image\";s:75:\"https://api.wpmet.com/auth/wp-content/uploads/2022/08/InPlugin-Banner-4.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:76:\"background-color: #00003E; display: block; height: 60px; text-align: center;\";s:10:\"unique_key\";s:15:\"AugustFlashSale\";}}s:8:\"10007665\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007665;s:5:\"title\";s:18:\"Metform x Hubspot!\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:9:\"dashboard\";s:5:\"start\";i:1660003200;s:3:\"end\";i:1661299200;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:232:\"<span style=\"color: #000000;\"><strong>MetForm\'s HubSpot FREE integration</strong> is now complete for your convenience. Just go to MetForm → Settings → CRM &amp; Marketing Integrations to connect HubSpot with MetForm now!</span>\";s:12:\"notice_image\";s:84:\"https://api.wpmet.com/auth/wp-content/uploads/2022/08/Metform-Integration-notice.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:0:\"\";s:10:\"unique_key\";s:0:\"\";}}s:8:\"10007416\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007416;s:5:\"title\";s:28:\"Wpmet 4th of July Flash Sale\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:8:\"all_page\";s:5:\"start\";i:1656806400;s:3:\"end\";i:1657065600;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:603:\"ElementsKit, ShopEngine, MetForm, WP Social, WP Ultimate Review — get all these PRO plugins altogether and save 70% instantly! Happy 4th of July Flash Sale!!\r\n\r\n<a href=\"https://wpmet.com/4-july/notice\"><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;Claim Your Discount →&quot;}\" data-sheets-userformat=\"{&quot;2&quot;:1337857,&quot;3&quot;:{&quot;1&quot;:0},&quot;12&quot;:0,&quot;14&quot;:{&quot;1&quot;:2,&quot;2&quot;:1136076},&quot;16&quot;:10,&quot;17&quot;:1,&quot;21&quot;:1,&quot;23&quot;:1}\" data-sheets-hyperlink=\"https://wpmet.com/deals\">Claim Your Discount →</span></a>\";s:12:\"notice_image\";s:64:\"https://api.wpmet.com/auth/wp-content/uploads/2022/07/Notice.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:13:\"4thJulybanner\";}}s:8:\"10007174\";O:8:\"stdClass\":7:{s:2:\"id\";i:10007174;s:5:\"title\";s:31:\"Wpmet Birthday Campaign Ownpage\";s:4:\"type\";s:6:\"notice\";s:6:\"screen\";s:8:\"all_page\";s:5:\"start\";i:1653868800;s:3:\"end\";i:1655942400;s:4:\"data\";O:8:\"stdClass\":9:{s:4:\"type\";s:6:\"notice\";s:11:\"button_link\";s:0:\"\";s:11:\"button_text\";s:0:\"\";s:11:\"notice_body\";s:261:\"Wpmet\'s Birthday Sale is going on! Enjoy limited-time discounts of up to 50% on each of our PRO plugins — ElementsKit , ShopEngine, MetForm, WP Social, WP Ultimate Review. Hurry up!\r\n\r\n<a href=\"https://wpmet.com/notice/birthday-deal\">Get Your Discount →</a>\";s:12:\"notice_image\";s:76:\"https://api.wpmet.com/auth/wp-content/uploads/2022/05/InPlugin-Notice-50.gif\";s:9:\"blacklist\";s:0:\"\";s:9:\"whitelist\";s:0:\"\";s:9:\"style_css\";s:14:\"display: block\";s:10:\"unique_key\";s:14:\"birthdaybanner\";}}}','yes'),(302,'metform_install_date','2023-07-15 08:12:19','yes'),(315,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(316,'elementskit_options','a:1:{s:17:\"megamenu_settings\";a:1:{s:15:\"menu_location_4\";a:1:{s:10:\"is_enabled\";i:0;}}}','yes'),(355,'metform_onboard_options','a:1:{s:8:\"settings\";a:2:{s:8:\"tut_term\";s:11:\"user_agreed\";s:16:\"newsletter_email\";s:0:\"\";}}','yes'),(356,'met_form_onboard_status','onboarded','yes'),(361,'metform_option__settings','a:4:{s:16:\"mf_hubsopt_token\";s:184:\"CJ6s1aGWMRIMAAMAUQAAAQAAAAAEGNSFwgQgu-ClFyjgrjMyFJ1mPcjFoiK-gMQCFxJhn05AE7h4OjAAACBBAAAAAAAAMAAAAAQAEIYAAAAAAAAAAAAgAAAAAADgIQAAAAABAAMAAAAAEAJCFMruf1yoKzrS-Pg18x_c4p2aD4dTSgNuYTFSAFoA\";s:24:\"mf_hubsopt_refresh_token\";s:36:\"14cfa897-c93c-4c49-9f6f-27240aed4b56\";s:21:\"mf_hubsopt_token_type\";s:6:\"bearer\";s:21:\"mf_hubsopt_expires_in\";i:1800;}','yes'),(366,'mf_hubspot_saved_forms','a:5:{i:0;a:3:{s:8:\"portalId\";N;s:4:\"guid\";N;s:4:\"name\";N;}i:1;a:3:{s:8:\"portalId\";N;s:4:\"guid\";N;s:4:\"name\";N;}i:2;a:3:{s:8:\"portalId\";N;s:4:\"guid\";N;s:4:\"name\";N;}i:3;a:3:{s:8:\"portalId\";N;s:4:\"guid\";N;s:4:\"name\";N;}i:4;a:3:{s:8:\"portalId\";N;s:4:\"guid\";N;s:4:\"name\";N;}}','yes'),(367,'hubsopt_forms_214_','O:8:\"stdClass\":5:{s:6:\"status\";s:5:\"error\";s:7:\"message\";s:73:\"This oauth-token is expired! expiresAt: 1689596644078, now: 1689601564744\";s:13:\"correlationId\";s:36:\"b20b784d-d543-4e08-bef9-ae506866d6bc\";s:8:\"category\";s:22:\"EXPIRED_AUTHENTICATION\";s:6:\"errors\";a:1:{i:0;O:8:\"stdClass\":1:{s:7:\"message\";s:64:\"The OAuth token used to make this call expired 82 minute(s) ago.\";}}}','yes'),(379,'lottie_config_admin','{\"_locale\":\"user\",\"shareUserData\":true,\"shareWithOthers\":false,\"copyLottieToMedia\":false,\"switchAccount\":false,\"isAdmin\":true,\"userData\":{\"accessToken\":\"N4uWF7nieVIQh8Kmr7gEFHGVyxik1SHh\",\"id\":\"a683c403-464e-4d17-ac68-eb6829a557df\",\"name\":\"Shivendra\",\"email\":\"shivendra@whatthehell.co\",\"avatarUrl\":\"https:\\/\\/lh3.googleusercontent.com\\/a\\/AAcHTtfsnebjLpobQUTpuvUEQyYwJsaWdevcPR739cQN=s96-c\",\"username\":\"\\/ds3q635yz8u5cqqn\",\"__typename\":\"User\"},\"is_block_logged_in\":true}','yes'),(398,'elementor_library_category_children','a:0:{}','yes'),(401,'metform_last_entry_serial_no','1','yes'),(416,'category_children','a:0:{}','yes'),(449,'bsf_analytics_optin','no','yes'),(491,'elementor_log','a:11:{s:32:\"7d1ea96d9c3266893f0b36d30fc6d6ac\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-01 02:35:49\";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:6:\"3.14.1\";s:2:\"to\";s:6:\"3.15.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-08-01 02:35:49\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.14.1\";s:2:\"to\";s:6:\"3.15.0\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"fea39d987ebae64591cfdf49b5f1990a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-09 22:17:23\";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:\"2023-08-09 22:17:23\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"7fe1358192da3ec307c44346ccbc1090\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-09 22:17:23\";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:\"2023-08-09 22:17:23\";}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:\"ea4642f37849be4202be5da521e1c136\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-09 22:17:23\";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:\"2023-08-09 22:17:23\";}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:\"bca344903b775720b03d8cf139e27b0b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-09 22:17:23\";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:6:\"3.14.1\";s:2:\"to\";s:6:\"3.15.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-08-09 22:17:23\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.14.1\";s:2:\"to\";s:6:\"3.15.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"41a9a6e888b59621935fb3d680cfa105\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-10 10:08:49\";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:6:\"3.15.1\";s:2:\"to\";s:6:\"3.15.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-08-10 10:08:49\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.15.1\";s:2:\"to\";s:6:\"3.15.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"1bc0a79305f0c9c11158529b5016892a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-10 10:14:15\";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:\"2023-08-10 10:14:15\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"e435ba0d802a913b2cf3353a55e1e1ca\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-10 10:14:15\";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:\"2023-08-10 10:14:15\";}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:\"0594ae5a1447e253685de13dce83d476\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-10 10:14:15\";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:\"2023-08-10 10:14:15\";}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:\"a38f9414c640f39b2247e9e3c392d71c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-10 10:14:15\";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:6:\"3.15.1\";s:2:\"to\";s:6:\"3.15.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-08-10 10:14:15\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.15.1\";s:2:\"to\";s:6:\"3.15.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"cee5f14a0d4e5dba243ee86f4edb1988\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-08-23 20:17:58\";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:6:\"3.15.2\";s:2:\"to\";s:6:\"3.15.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-08-23 20:17:58\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.15.2\";s:2:\"to\";s:6:\"3.15.3\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}}','no'),(507,'db_upgraded','','yes'),(510,'_site_transient_timeout_browser_0a264a5519a9e1055915d67c10c5115b','1692204054','no'),(511,'_site_transient_browser_0a264a5519a9e1055915d67c10c5115b','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"115.0.0.0\";s:8:\"platform\";s:0:\"\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(512,'_site_transient_timeout_php_check_2f5acf219326a8bc5331ee302b9812f4','1692204054','no'),(513,'_site_transient_php_check_2f5acf219326a8bc5331ee302b9812f4','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(514,'_transient_timeout_elementor_remote_info_api_data_3.15.1','1691642458','no'),(515,'_transient_elementor_remote_info_api_data_3.15.1','a:4:{s:9:\"timestamp\";s:10:\"1691596998\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"6.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(519,'can_compress_scripts','0','yes'),(520,'_site_transient_timeout_community-events-17b1f522376e5f192ea9e714967ad8e2','1691642898','no'),(521,'_site_transient_community-events-17b1f522376e5f192ea9e714967ad8e2','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"162.158.23.0\";}s:6:\"events\";a:0:{}}','no'),(522,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1691642898','no'),(523,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 23:38:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.4-alpha-56377\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 6.3 “Lionel”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2023/08/lionel/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 20:03:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15718\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:196:\"WordPress 6.3 \"Lionel\" is here! Named after Lionel Hampton, the prolific jazz musician and bandleader, this release was made possible by over 650 contributors. Download WordPress 6.3 Lionel today.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matias Ventura\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:70088:\"\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" fetchpriority=\"high\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1024%2C683&#038;ssl=1\" alt=\"\" class=\"wp-image-15794\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=2048%2C1365&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Say hello to WordPress 6.3 “Lionel,” named after <a href=\"https://en.wikipedia.org/wiki/Lionel_Hampton\">Lionel Hampton</a>, the celebrated American jazz artist. A prolific jazz vibraphonist, pianist, and percussionist, Hampton gained notoriety working in harmony with greats from <a href=\"https://en.wikipedia.org/wiki/Charles_Mingus\">Charles Mingus</a> to <a href=\"https://en.wikipedia.org/wiki/Quincy_Jones\">Quincy Jones</a> and as bandleader of the eponymous Lionel Hampton Orchestra. His artistry and charitable work have been recognized with a Grammy, a star on the Hollywood Walk of Fame, and the National Medal of Arts.</p>\n\n\n\n<p>Be sure to turn up the volume of the <a href=\"https://www.youtube.com/channel/UCpfWWFslWSapwL_q16AboSg/featured\">musical stylings</a> of Lionel Hampton as you discover all “Lionel” has to offer.</p>\n\n\n\n<p>With “Lionel” you can create beautiful and compelling websites more efficiently than ever. Whether you want to build an entire site without coding or are a developer looking to customize every detail, WordPress 6.3 has something to pique your interest. As you unpack and explore this latest release, you will discover updated functions and navigation designed to help you work and create with less effort, design tools that give you more control over layout, and added functionality enriching the site-building experience.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">&#8220;Lionel&#8221; marks a major chapter in the evolution of WordPress as a tool for expression. It’s the culmination of years of work from hundreds of contributors, bringing a more powerful and cohesive editing experience for crafting websites with blocks. It continues the quest of making web publishing approachable for everyone—so it’s also just a new beginning!</p>\n<cite>Matías Ventura, WordPress 6.3 Release Lead</cite></blockquote>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/wordpress-6.3.zip\">Download WordPress 6.3 &#8220;Lionel&#8221; today</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s inside</h2>\n\n\n\n<p>This momentous release opens new possibilities for the creative expression of designers, creators, and builders. Powerful tools and refined controls give users confidence and allow them to easily manage their sites.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Do everything in the Site Editor</h3>\n\n\n\n<p>WordPress 6.3 brings your content, templates, and patterns together in the Site Editor for the first time. Add pages, browse style variations, create synced patterns, and enjoy fine-tuned control over navigation menus. Spend less time switching across different site areas—so you can focus on what matters most. Creation to completion, all in one place.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image titled: &quot;Do everything in the Site Editor&quot;\" class=\"wp-image-15808\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Do everything in the Site Editor</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Preview Block themes</h3>\n\n\n\n<p>Experience block themes before you switch and preview the Site Editor, with options to customize directly before committing to a new theme.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image about previewing block themes titled Previewing Themes depicting &quot;Previewing: Organizer&quot;\" class=\"wp-image-15769\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Preview a new block theme before you switch and commit</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Create and sync patterns</h3>\n\n\n\n<p>Arrange blocks and save them to the ‘My Patterns’ section for use throughout your site. You can even specify whether to sync your patterns (previously referred to as “Reusable blocks”) so that one change applies to all parts of your site. Or, utilize patterns as a starting point with the ability to customize each instance.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image showing the new My Patterns section in the CMS.\" class=\"wp-image-15768\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>My patterns: All your patterns in one place</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Work faster with the Command Palette</h3>\n\n\n\n<p>Switch to a specific template or open your editor preferences with a new tool that helps you quickly access expanded functionality. With simple keyboard shortcuts (⌘+k on Mac or Ctrl+k on Windows), clicking the sidebar search icon in Site View, or clicking the Title Bar, get where you need to go and do what you need to do in seconds.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Command Palette\" class=\"wp-image-15763\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Get to know the new Command Palette </em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Sharpen your designs with new tools</h3>\n\n\n\n<p>New design controls bring more versatility for fine-tuning, starting with the ability to customize your captions from the Styles interface without coding. You can manage your duotone filters in Styles for supported blocks and pick from the options provided by your theme or disable them entirely. The Cover block gets added settings for text color, layout controls, and border options, making this powerful block even more handy.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image representing the new design tools in the Site Editor\" class=\"wp-image-15764\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>New design tools</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Track design changes with Style revisions</h3>\n\n\n\n<p>With a new audit trail, you can now see how your site looked at a specific time. Visualize these revisions in a timeline and access a one-click option to restore prior styles.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image titled &quot;Style Revisions&quot;\" class=\"wp-image-15770\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Style revisions: See your style revision history </em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Annotate with the Footnotes block</h3>\n\n\n\n<p>Footnotes add convenient annotations throughout your content. Now you can add and link footnotes for any paragraph.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Footnotes Block\" class=\"wp-image-15766\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Add footnotes effortlessly with the new Footnotes Block</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Show or hide content with the Details block</h3>\n\n\n\n<p>Use the Details block to avoid spoiling a surprise, create an interactive Q&amp;A section, or hide a long paragraph under a heading.</p>\n\n\n\n<figure class=\"wp-block-image aligncenter size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=1024%2C666&#038;ssl=1\" alt=\"Image depicting the new Details Block\" class=\"wp-image-15765\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=1024%2C666&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=300%2C195&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=768%2C499&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /><figcaption class=\"wp-element-caption\"><em>Display or hide content with the new Details Block</em></figcaption></figure>\n\n\n\n<h3 class=\"wp-block-heading\">Performance gets a boost</h3>\n\n\n\n<p>WordPress 6.3 has <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">170+ performance updates</a>, including defer and async support for the Scripts API and fetchpriority support for images. These improvements, along with block template resolution, image lazy-loading, and the emoji loader, can dramatically improve your website’s perceived load time.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility remains a core focus</h3>\n\n\n\n<p>Incorporating more than 50 accessibility improvements across the platform, WordPress 6.3 is more accessible than ever. Improved labeling, optimized tab and arrow-key navigation, revised heading hierarchy, and new controls in the admin image editor allow those using assistive technologies to navigate more easily.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other highlights</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Set aspect ratio on images</h4>\n\n\n\n<p>Specify your aspect ratios and ensure design integrity, especially when using images in patterns.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build your site distraction-free</h4>\n\n\n\n<p>Distraction-free designing is now available in the Site Editor.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Rediscover the Top Toolbar</h4>\n\n\n\n<p>A revamped Top Toolbar offers parent selectors for nested blocks, options when selecting multiple blocks, and an interface embedded into the title bar with new functionality in mind.</p>\n\n\n\n<h4 class=\"wp-block-heading\">List View improvements</h4>\n\n\n\n<p>Drag and drop to every content layer and delete any block you would like in the updated List View.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build templates with Patterns</h4>\n\n\n\n<p>Create unique patterns to jumpstart template creation with a new modal enabling access to pattern selection.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Changes in PHP support</h4>\n\n\n\n<p>Support for PHP 5 is discontinued. The&nbsp;new minimum supported version&nbsp;of PHP is 7.0.0.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Failed update safeguards</h4>\n\n\n\n<p>WordPress will now auto-restore the previously installed version of plugins or themes if something goes wrong during a failed manual update.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress and 6.3</h2>\n\n\n\n<p>Explore <a href=\"https://learn.wordpress.org/tutorials/\">Learn WordPress</a> for quick how-to videos, <a href=\"https://learn.wordpress.org/social-learning/\">online workshops</a>, and other resources to level up your knowledge of the latest features in WordPress.&nbsp;</p>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a> for detailed developer notes to help you build with WordPress and get the most out of the latest release. Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-3/\">6.3 release notes</a> for additional technical details about this release, including feature recaps, installation information, file changes, fixes, and updates.</p>\n\n\n\n<p>Read and subscribe to the <a href=\"https://developer.wordpress.org/news/\">Developer Blog</a> for even more helpful WordPress content.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress is a global software platform</h2>\n\n\n\n<p><a href=\"https://translate.wordpress.org/stats/\">61 locales have translated 90 percent</a> or more of WordPress 6.3 into their language. Community translators are working hard to ensure more translations are on their way. Thank you, gracias, ありがとう, धन्यवाद, and ευχαριστώ to everyone who helps to make WordPress available in 200 languages.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributing to WordPress</h2>\n\n\n\n<p>WordPress believes in democratizing publishing and <a href=\"https://opensource.org/osd-annotated\">the freedoms that come with open source</a>. Supporting this idea is a large community of people collaborating to strengthen the software. A big thank you to everyone who makes WordPress.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">Our community of contributors has always been what makes WordPress wonderful. You are what makes sure our project continues to thrive, and our software remains secure, usable, and impactful. Thank you so much for joining together to make the web (and the world) a better place!</p>\n<cite>Josepha Haden Chomphosy, Executive Director, WordPress.org</cite></blockquote>\n\n\n\n<p>WordPress 6.3 arrives thanks to more than 650 contributors&#8217; collective passion and effort in at least 52 countries. This release also includes over 205 first-time contributors!&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">The 6.3 release squad</h3>\n\n\n\n<p>The 6.3 release was led from start to launch by an active set of contributors from across many disciplines. Over several weeks, they kept the release on track and moving forward by connecting ideas, resolving issues, and removing roadblocks.</p>\n\n\n\n<ul>\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a></li>\n\n\n\n<li>Release Coordinators: <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li>\n\n\n\n<li>Core Tech Leads: <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a></li>\n\n\n\n<li>Editor Tech Leads:&nbsp; <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon Dodd</a></li>\n\n\n\n<li>Core Triage Leads: <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Glecker</a></li>\n\n\n\n<li>Editor Triage Leads: <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></li>\n\n\n\n<li>Documentation Leads: <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>, <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a>, <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a>, <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a></li>\n\n\n\n<li>Marketing &amp; Communications Leads: <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a></li>\n\n\n\n<li>Test Leads: <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a>, <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>, <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a></li>\n\n\n\n<li>Design Leads: <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a></li>\n\n\n\n<li>Performance Leads: <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">6.3 contributors</h3>\n\n\n\n<p>Complimenting the release squad is a diverse group of contributors whose global collaboration delivered hundreds of enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress community.&nbsp;</p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/zgrkaralar/\">&#214;zg&#252;r KARALAR</a> · <a href=\"https://profiles.wordpress.org/6adminit/\">6adminit</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/abhi3315/\">abhi3315</a> · <a href=\"https://profiles.wordpress.org/softwortech/\">Abhishek Sharma</a> · <a href=\"https://profiles.wordpress.org/ababir/\">Abir</a> · <a href=\"https://profiles.wordpress.org/abitofmind/\">abitofmind</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/awarner20/\">Adam W. Warner</a> · <a href=\"https://profiles.wordpress.org/adarshposimyth/\">Adarsh Akshat</a> · <a href=\"https://profiles.wordpress.org/adeltahri/\">Adel Tahri</a> · <a href=\"https://profiles.wordpress.org/adi3890/\">Aditya Jain</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a> · <a href=\"https://profiles.wordpress.org/ahsannayem/\">Ahsan Chowdhury</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/akmelias/\">akmelias</a> · <a href=\"https://profiles.wordpress.org/wpfy/\">Akramul Hasan</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/xavortm/\">Alex Dimitrov</a> · <a href=\"https://profiles.wordpress.org/cawa-93/\">Alex Kozack</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alexandrelara/\">Alexandre Lara</a> · <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro G&#243;mez</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/akrocks/\">Amaan Khan</a> · <a href=\"https://profiles.wordpress.org/amansurov/\">amansurov</a> · <a href=\"https://profiles.wordpress.org/amin7/\">amin</a> · <a href=\"https://profiles.wordpress.org/sabreuse/\">Amy Hendrix (sabreuse)</a> · <a href=\"https://profiles.wordpress.org/anatoliyav/\">Anatoliy</a> · <a href=\"https://profiles.wordpress.org/anatolikkk/\">Anatoliy Dovgun</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/andizer/\">Andy Meerwaldt</a> · <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> · <a href=\"https://profiles.wordpress.org/anilvaza/\">Anil Vaza</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/reputeinfosystems/\">Ankur Chotai</a> · <a href=\"https://profiles.wordpress.org/annashopina/\">Anna</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a> · <a href=\"https://profiles.wordpress.org/annziel/\">annziel</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antonyagrios/\">Antony Agrios</a> · <a href=\"https://profiles.wordpress.org/anver/\">anver</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/arafatjamil01/\">Arafat Jamil</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/ideag/\">Arunas Liuiza</a> · <a href=\"https://profiles.wordpress.org/iamasadpolash/\">Asad Polash</a> · <a href=\"https://profiles.wordpress.org/mrasharirfan/\">Ashar Irfan</a> · <a href=\"https://profiles.wordpress.org/ashikurwp/\">Ashikur Rahman</a> · <a href=\"https://profiles.wordpress.org/nant82/\">Atanas Antonov</a> · <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> · <a href=\"https://profiles.wordpress.org/filosofo/\">Austin Matzko</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azizantoun/\">azizantoun</a> · <a href=\"https://profiles.wordpress.org/aznadesign/\">Aznadesign</a> · <a href=\"https://profiles.wordpress.org/bangank36/\">bangank36</a> · <a href=\"https://profiles.wordpress.org/bartkalisz/\">bartkalisz</a> · <a href=\"https://profiles.wordpress.org/empireoflight/\">Ben Dunkle</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benjgrolleau/\">Benjamin Grolleau</a> · <a href=\"https://profiles.wordpress.org/benjibee/\">benjibee</a> · <a href=\"https://profiles.wordpress.org/benlk/\">benlk</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/albatross10/\">Bhavik Kalpesh</a> · <a href=\"https://profiles.wordpress.org/bhrugesh12/\">Bhrugesh Bavishi</a> · <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/bitnissen/\">bitnissen</a> · <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> · <a href=\"https://profiles.wordpress.org/wpe_bdurette/\">Brandon DuRette</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a> · <a href=\"https://profiles.wordpress.org/brasofilo/\">brasofilo</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/fischfood/\">Brian Fischer</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/bridgetwillard/\">Bridget Willard</a> · <a href=\"https://profiles.wordpress.org/bronsonquick/\">Bronson Quick</a> · <a href=\"https://profiles.wordpress.org/brookemk/\">Brooke Kaminski</a> · <a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a> · <a href=\"https://profiles.wordpress.org/caraffande/\">caraffande</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a> · <a href=\"https://profiles.wordpress.org/ceer/\">ceer</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/chiragrathod103/\">Chirag Rathod</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/mrflannagan/\">Chris Flannagan</a> · <a href=\"https://profiles.wordpress.org/clubkert/\">Chris Lubkert</a> · <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/ckoerner/\">ckoerner</a> · <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/corentingautier/\">corentingautier</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/crixu/\">Crixu</a> · <a href=\"https://profiles.wordpress.org/crs1138/\">crs1138</a> · <a href=\"https://profiles.wordpress.org/crstauf/\">crstauf</a> · <a href=\"https://profiles.wordpress.org/cshark/\">cshark</a> · <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a> · <a href=\"https://profiles.wordpress.org/dbernar1/\">Dan Bernardic</a> · <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/danyk4/\">danyk4</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidmusnik/\">davidmusnik</a> · <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a> · <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/dennysdionigi/\">Dennys Dionigi</a> · <a href=\"https://profiles.wordpress.org/densityapps/\">densityapps</a> · <a href=\"https://profiles.wordpress.org/sccr410/\">Derek Ashauer</a> · <a href=\"https://profiles.wordpress.org/derekblank/\">Derek Blank</a> · <a href=\"https://profiles.wordpress.org/shagors/\">devshagor</a> · <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruvishah2203/\">Dhruvi Shah</a> · <a href=\"https://profiles.wordpress.org/digtek/\">DigTek</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dimijazz/\">dimijazz</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/doems/\">doems</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/dsar/\">dsar</a> · <a href=\"https://profiles.wordpress.org/dustyreagan/\">dustyreagan</a> · <a href=\"https://profiles.wordpress.org/ebai4/\">ebai4</a> · <a href=\"https://profiles.wordpress.org/ecorica/\">ecorica</a> · <a href=\"https://profiles.wordpress.org/beckej/\">Ed Beck</a> · <a href=\"https://profiles.wordpress.org/eduwass/\">eduwass</a> · <a href=\"https://profiles.wordpress.org/wpnook/\">Edward</a> · <a href=\"https://profiles.wordpress.org/worldomonation/\">Edwin Takahashi</a> · <a href=\"https://profiles.wordpress.org/ehsanakhgari/\">ehsanakhgari</a> · <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a> · <a href=\"https://profiles.wordpress.org/emirpprime/\">emirpprime</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a> · <a href=\"https://profiles.wordpress.org/eric7186/\">eric.7186</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/ernest35/\">Ernest Behinov</a> · <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a> · <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/falgunihdesai/\">Falguni Desai</a> · <a href=\"https://profiles.wordpress.org/iamfarhan09/\">Farhan Ahmed</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> · <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a> · <a href=\"https://profiles.wordpress.org/franrosa/\">franrosa</a> · <a href=\"https://profiles.wordpress.org/gaeldenysiak/\">gaeldenysiak</a> · <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a> · <a href=\"https://profiles.wordpress.org/ecgan/\">Gan (a11n)</a> · <a href=\"https://profiles.wordpress.org/voldemortensen/\">Garth Mortensen</a> · <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a> · <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/wtower/\">George</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/gilles66/\">gilles66</a> · <a href=\"https://profiles.wordpress.org/mokagio/\">Gio Lodi</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/grandslambert/\">GrandSlambert</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Zi&#243;łkowski</a> · <a href=\"https://profiles.wordpress.org/gudmdharalds/\">Gudmundur Haraldsson</a> · <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a> · <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> · <a href=\"https://profiles.wordpress.org/hrdelwar/\">Habibur Rahman Delwar</a> · <a href=\"https://profiles.wordpress.org/hztyfoon/\">Hanzala Taifun</a> · <a href=\"https://profiles.wordpress.org/thakkarhardik/\">Hardik Thakkar</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/haritpanchal/\">Harit Panchal</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/hasanmisbah/\">Hasan Misbah</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/heiko_mamerow/\">Heiko Mamerow</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/helgatheviking/\">HelgaTheViking</a> · <a href=\"https://profiles.wordpress.org/luehrsen/\">Hendrik Luehrsen</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/panchalhimani711/\">Himani Panchal</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">Hit Bhalodia</a> · <a href=\"https://profiles.wordpress.org/hrrarya/\">Hridoy Mozumder</a> · <a href=\"https://profiles.wordpress.org/hugobaeta/\">Hugo Baeta</a> · <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a> · <a href=\"https://profiles.wordpress.org/hberberoglu/\">Huseyin Berberoglu</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/polevaultweb/\">Iain Poulson</a> · <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/ibrahimmonir/\">Ibrahim Khalil</a> · <a href=\"https://profiles.wordpress.org/shuvoaftab/\">Ibrahim Sharif</a> · <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a> · <a href=\"https://profiles.wordpress.org/imanish003/\">imanish003</a> · <a href=\"https://profiles.wordpress.org/intoxination/\">intoxination</a> · <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/jacknotman/\">jacknotman</a> · <a href=\"https://profiles.wordpress.org/jahidcse/\">Jahid Hasan</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/james-roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/james0r/\">james0r</a> · <a href=\"https://profiles.wordpress.org/janboddez/\">Jan Boddez</a> · <a href=\"https://profiles.wordpress.org/jane/\">jane</a> · <a href=\"https://profiles.wordpress.org/jankyz/\">jankyz</a> · <a href=\"https://profiles.wordpress.org/janpaulkleijn/\">janpaulkleijn</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/pbking/\">Jason Crist</a> · <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jbcouton/\">jbcouton</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffmora/\">jeffmora</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jenmylo/\">Jen</a> · <a href=\"https://profiles.wordpress.org/jenilk/\">Jenil Kanani</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">Jerry Jones</a> · <a href=\"https://profiles.wordpress.org/jhnstn/\">jhnstn</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">jigar bhanushali</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/bitmachina/\">John Hooks</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/jomonthomaslobo1/\">Jomon Thomas Lobo</a> · <a href=\"https://profiles.wordpress.org/akbigdog/\">Jon Bourne</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a> · <a href=\"https://profiles.wordpress.org/n2erjo00/\">Joni Erkkil&#228;</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a> · <a href=\"https://profiles.wordpress.org/josepmoran/\">Josep Mor&#225;n</a> · <a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a> · <a href=\"https://profiles.wordpress.org/jhabdas/\">Josh Habdas</a> · <a href=\"https://profiles.wordpress.org/shelob9/\">Josh Pollock</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jqz/\">jqz</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juzar/\">Juzar</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/leprincenoir/\">Kantari Samy</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/thekt12/\">Karthik Thayyil</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn P.</a> · <a href=\"https://profiles.wordpress.org/kamplugins/\">Kausar Al Mamun</a> · <a href=\"https://profiles.wordpress.org/kausaralm/\">Kausar Alam</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kenwins/\">kenwins</a> · <a href=\"https://profiles.wordpress.org/kevinb/\">Kevin Behrens</a> · <a href=\"https://profiles.wordpress.org/khoipro/\">Khoi Pro</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/koenschipper/\">koenschipper</a> · <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a> · <a href=\"https://profiles.wordpress.org/krishneup/\">Krishna Neupane</a> · <a href=\"https://profiles.wordpress.org/krunal265/\">Krunal Bhimajiyani</a> · <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kutsu/\">kutsu</a> · <a href=\"https://profiles.wordpress.org/kzeni/\">KZeni</a> · <a href=\"https://profiles.wordpress.org/leamcaleese/\">L&#233;a McAleese</a> · <a href=\"https://profiles.wordpress.org/lgadzhev/\">Lachezar Gadzhev</a> · <a href=\"https://profiles.wordpress.org/lanacodes/\">Lana Codes</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a> · <a href=\"https://profiles.wordpress.org/laurentmagnin/\">laurentmagnin</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a> · <a href=\"https://profiles.wordpress.org/lessbloat/\">lessbloat</a> · <a href=\"https://profiles.wordpress.org/levdbas/\">Levdbas</a> · <a href=\"https://profiles.wordpress.org/wplindavantol/\">Linda van Tol</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/lowlydev/\">lowlydev</a> · <a href=\"https://profiles.wordpress.org/lphoumpakka/\">lphk</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/madejackson/\">madejackson</a> · <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mehdi01/\">Mahdi Hasan</a> · <a href=\"https://profiles.wordpress.org/nadimcse/\">Mahmudul Haque Nadim</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/majaloncar/\">Maja Loncar</a> · <a href=\"https://profiles.wordpress.org/malae/\">Malae</a> · <a href=\"https://profiles.wordpress.org/malavvasita/\">Malav Vasita</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/maniu/\">maniu</a> · <a href=\"https://profiles.wordpress.org/mdxfr/\">Marc</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/marcguay/\">MarcGuay</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a> · <a href=\"https://profiles.wordpress.org/margolisj/\">margolisj</a> · <a href=\"https://profiles.wordpress.org/marianne38/\">marianne38</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/marineevain/\">Marine EVAIN</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a> · <a href=\"https://profiles.wordpress.org/markdoliner/\">markdoliner</a> · <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a> · <a href=\"https://profiles.wordpress.org/mkox/\">Markus Kosmal</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">marybaum</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">masteradhoc</a> · <a href=\"https://profiles.wordpress.org/mastrup/\">mastrup</a> · <a href=\"https://profiles.wordpress.org/mat-lipe/\">Mat Lipe</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/matmoe/\">matmoe</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mwtsn/\">Matt Watson</a> · <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a> · <a href=\"https://profiles.wordpress.org/matt_fw/\">matt_fw</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a> · <a href=\"https://profiles.wordpress.org/azouamauriac/\">Mauriac AZOUA</a> · <a href=\"https://profiles.wordpress.org/maurodf/\">maurodf</a> · <a href=\"https://profiles.wordpress.org/cadic/\">Max Lyuchin</a> · <a href=\"https://profiles.wordpress.org/maxcgparis/\">maxcgparis</a> · <a href=\"https://profiles.wordpress.org/maysi/\">maysi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/mcalyster/\">McAlyster</a> · <a href=\"https://profiles.wordpress.org/mcliwanow/\">mcliwanow</a> · <a href=\"https://profiles.wordpress.org/mahamudur78/\">Md Mahamudur Rahaman</a> · <a href=\"https://profiles.wordpress.org/fencermonir/\">Md Monir Hossain</a> · <a href=\"https://profiles.wordpress.org/shuvo247/\">MD Shakibul Islam</a> · <a href=\"https://profiles.wordpress.org/megane9988/\">megane9988</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/menakas/\">Menaka S.</a> · <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a> · <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a> · <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/mikeday/\">Michael Day</a> · <a href=\"https://profiles.wordpress.org/michaelh/\">MichaelH</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/mikecho/\">mikecho</a> · <a href=\"https://profiles.wordpress.org/mikeyzm/\">mikeyzm</a> · <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/gonzomir/\">Milen Petrinski - Gonzo</a> · <a href=\"https://profiles.wordpress.org/studionashvegas/\">Mitch Canter</a> · <a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a> · <a href=\"https://profiles.wordpress.org/mitchoyoshitaka/\">mitcho (Michael Yoshitaka Erlewine)</a> · <a href=\"https://profiles.wordpress.org/moinrrahmed/\">Moe</a> · <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a> · <a href=\"https://profiles.wordpress.org/mohanrajp/\">Mohan Raj</a> · <a href=\"https://profiles.wordpress.org/patelmohip/\">Mohip Patel</a> · <a href=\"https://profiles.wordpress.org/mohiuddinomran/\">Mohiuddin Omran</a> · <a href=\"https://profiles.wordpress.org/boemedia/\">Monique Dubbelman</a> · <a href=\"https://profiles.wordpress.org/monzuralam/\">Monzur Alam</a> · <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a> · <a href=\"https://profiles.wordpress.org/mrinal013/\">Mrinal Haque</a> · <a href=\"https://profiles.wordpress.org/mtxz/\">mtxz</a> · <a href=\"https://profiles.wordpress.org/thisisyeasin/\">Muhammad Yeasin</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a> · <a href=\"https://profiles.wordpress.org/naeemhaque/\">Naeem Haque</a> · <a href=\"https://profiles.wordpress.org/tushar284/\">Nahid Hasan</a> · <a href=\"https://profiles.wordpress.org/narthur/\">Narthur</a> · <a href=\"https://profiles.wordpress.org/nataliat2004/\">nataliat2004</a> · <a href=\"https://profiles.wordpress.org/nateallen/\">Nate Allen</a> · <a href=\"https://profiles.wordpress.org/nazgul/\">Nazgul</a> · <a href=\"https://profiles.wordpress.org/nazmul111/\">Nazmul Hosen</a> · <a href=\"https://profiles.wordpress.org/nazmulhudadev/\">Nazmul Huda</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/nickpap/\">nickpap</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nihar007/\">Nihar Ranjan Das</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez</a> · <a href=\"https://profiles.wordpress.org/dhrupo/\">Niluthpal Purkayastha</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/njsamsatli/\">njsamsatli</a> · <a href=\"https://profiles.wordpress.org/nkeller15/\">nkeller15</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a> · <a href=\"https://profiles.wordpress.org/hideokamoto/\">Okamoto Hidetaka</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> · <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a> · <a href=\"https://profiles.wordpress.org/orestissam/\">Orestis Samaras</a> · <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a> · <a href=\"https://profiles.wordpress.org/owi/\">owi</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pamprn/\">Pamela Ribeiro</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pateljaymin/\">Patel Jaymin</a> · <a href=\"https://profiles.wordpress.org/patriciahillebrandt/\">patriciahillebrandt</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a> · <a href=\"https://profiles.wordpress.org/paulopmt1/\">Paulo Trentin</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> · <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walb&#248; Johnsg&#229;rd</a> · <a href=\"https://profiles.wordpress.org/tyrannous/\">Philipp Bammes</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/strategio/\">Pierre Sylvestre</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/pitamdey/\">Pitam Dey</a> · <a href=\"https://profiles.wordpress.org/piyushtekwani/\">Piyush Tekwani</a> · <a href=\"https://profiles.wordpress.org/pkbhatt/\">pkbhatt</a> · <a href=\"https://profiles.wordpress.org/platonkristinin/\">Platon Kristinin</a> · <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pouicpouic/\">pouicpouic</a> · <a href=\"https://profiles.wordpress.org/prashantbhivsane/\">Prashant</a> · <a href=\"https://profiles.wordpress.org/prashantvatsh/\">Prashant Singh</a> · <a href=\"https://profiles.wordpress.org/pravinparmar2404/\">Pravin Parmar</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/prikari/\">Priyanka Adhikari</a> · <a href=\"https://profiles.wordpress.org/przemekhernik/\">Przemek Hernik</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/bi0xid/\">Rafa Poveda</a> · <a href=\"https://profiles.wordpress.org/rfischmann/\">Rafael Fischmann</a> · <a href=\"https://profiles.wordpress.org/rajanpanchal2028/\">Rajan Panchal</a> · <a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/ratneshsonar/\">Ratnesh Sonar</a> · <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a> · <a href=\"https://profiles.wordpress.org/rembem/\">rembem</a> · <a href=\"https://profiles.wordpress.org/renyot/\">ren</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/richards1052/\">richards1052</a> · <a href=\"https://profiles.wordpress.org/richiecarey/\">Richie Carey</a> · <a href=\"https://profiles.wordpress.org/rjasdfiii/\">rjasdfiii</a> · <a href=\"https://profiles.wordpress.org/rob1n/\">rob1n</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> · <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> · <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a> · <a href=\"https://profiles.wordpress.org/algorithmsunlocks/\">Ruman Ahmed</a> · <a href=\"https://profiles.wordpress.org/rutviksavsani/\">Rutvik Savsani</a> · <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a> · <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a> · <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/sereedmedia/\">S&#233; Reed</a> · <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a> · <a href=\"https://profiles.wordpress.org/suleymankenar/\">S&#252;leyman Kenar</a> · <a href=\"https://profiles.wordpress.org/andy786/\">Sahil B.</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a> · <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/samnajian/\">SamNajian</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarequl/\">Sarequl Basar</a> · <a href=\"https://profiles.wordpress.org/saxonfletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/sdavis2702/\">Sean Davis</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/sh4lin/\">Shalin Shah</a> · <a href=\"https://profiles.wordpress.org/enchiridion/\">Shannon Little</a> · <a href=\"https://profiles.wordpress.org/shiponkarmakar/\">Shipon Karmakar</a> · <a href=\"https://profiles.wordpress.org/shreyasikhar26/\">Shreyas Ikhar</a> · <a href=\"https://profiles.wordpress.org/shubhamsedani/\">shubhamsedani</a> · <a href=\"https://profiles.wordpress.org/shuvo586/\">shuvo586</a> · <a href=\"https://profiles.wordpress.org/shvv/\">shvv</a> · <a href=\"https://profiles.wordpress.org/shwetabathani2312/\">Shweta Bathani</a> · <a href=\"https://profiles.wordpress.org/siddhantwadhwani/\">Siddhant Wadhwani</a> · <a href=\"https://profiles.wordpress.org/rsiddharth/\">siddharth ravikumar</a> · <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a> · <a href=\"https://profiles.wordpress.org/10upsimon/\">Simon Dowdles</a> · <a href=\"https://profiles.wordpress.org/simonemanfre/\">Simone</a> · <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/sirajummahdi/\">Sirajum Mahdi</a> · <a href=\"https://profiles.wordpress.org/sboerrigter/\">Sjoerd Boerrigter</a> · <a href=\"https://profiles.wordpress.org/sjoerdlinders/\">Sjoerd Linders</a> · <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a> · <a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a> · <a href=\"https://profiles.wordpress.org/enderandpeter/\">Spencer</a> · <a href=\"https://profiles.wordpress.org/sque/\">sque</a> · <a href=\"https://profiles.wordpress.org/srikanthmeenakshi/\">srikanthmeenakshi</a> · <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/vanaf1979/\">Stephan Nijman</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sudipatel007/\">Sudip Dadhaniya</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/codemonksuvro/\">Suvro</a> · <a href=\"https://profiles.wordpress.org/suzettefranck/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/mt_suzette/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/nuhel/\">Syed Nuhel</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> · <a href=\"https://profiles.wordpress.org/tahmina1du/\">Tahmina Jahan</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/tanner-m/\">Tanner Moushey</a> · <a href=\"https://profiles.wordpress.org/thakordarshil/\">Thakor Darshil</a> · <a href=\"https://profiles.wordpress.org/thomask/\">thomask</a> · <a href=\"https://profiles.wordpress.org/thunderdw/\">thunder rumbles</a> · <a href=\"https://profiles.wordpress.org/tijmensmit/\">Tijmen Smit</a> · <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Kr&#252;ss</a> · <a href=\"https://profiles.wordpress.org/tb1909/\">Tim Brath&#228;rig</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/thomasdevisser/\">Tom de Visser</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/r0uter/\">tonythomas01</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a> · <a href=\"https://profiles.wordpress.org/scep/\">Tryon</a> · <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a> · <a href=\"https://profiles.wordpress.org/tyb/\">TyB</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/umeshmcakadi/\">Umesh Patel</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">Upadala Vipul</a> · <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a> · <a href=\"https://profiles.wordpress.org/uxtremist/\">uxtremist</a> · <a href=\"https://profiles.wordpress.org/eboxnet/\">Vagelis</a> · <a href=\"https://profiles.wordpress.org/valterlorran/\">valterlorran</a> · <a href=\"https://profiles.wordpress.org/vasilism/\">Vasilis Manthos</a> · <a href=\"https://profiles.wordpress.org/victoranto/\">victoranto</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vivekawsm/\">vivekawsm</a> · <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">Will Skora</a> · <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a> · <a href=\"https://profiles.wordpress.org/wlindley/\">wlindley</a> · <a href=\"https://profiles.wordpress.org/wojtekszkutnik/\">Wojtek Szkutnik</a> · <a href=\"https://profiles.wordpress.org/wplmillet/\">wplmillet</a> · <a href=\"https://profiles.wordpress.org/xerpa43/\">xerpa43</a> · <a href=\"https://profiles.wordpress.org/xmarcos/\">xmarcos</a> · <a href=\"https://profiles.wordpress.org/yaniiliev/\">Yani Iliev</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/zdrobau/\">Zdrobau</a> · <a href=\"https://profiles.wordpress.org/zebaafiashama/\">Zeba Afia Shama</a> · <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> · <a href=\"https://profiles.wordpress.org/zenaulislam/\">Zenaul Islam</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a></p>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress support forums</h3>\n\n\n\n<p>Many thanks to the community volunteers who contribute to the <a href=\"https://wordpress.org/support/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved today</h3>\n\n\n\n<p>If contributing to WordPress appeals to you, learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and explore the product roadmap on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>. You can also use this <a href=\"https://make.wordpress.org/contribute/\">interactive tool</a> to help you decide which team is right for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking toward the future</h2>\n\n\n\n<p>20 years ago this past May, <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">WordPress shipped the very first version, 0.7</a>. What started with a blog post from co-founder Matt Mullenweg and a subsequent comment by co-founder Mike Little eventually evolved into the world’s most popular web publishing platform.</p>\n\n\n\n<p>WordPress software continues to evolve and iterate based on the needs and desires of its robust and diverse user community. This release is the capstone of <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2</a> along the WordPress <a href=\"https://wordpress.org/about/roadmap/\">development roadmap</a>. As the community looks to the future, all efforts turn to <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">6.4</a> and, subsequently, the transition into <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3</a>, which is expected to introduce powerful collaboration tools to the website creation and management experience.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">6.3 Haiku</h2>\n\n\n\n<p>A capstone release<br>Ships tools for building great sites<br>Collaboration</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15718\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Concerns over the European Union’s Cyber Resilience Act (CRA)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 14:25:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"cra\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15686\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:216:\"\"Our shared goal is to further bolster the security of digital products without compromising the values of freedom, democracy, and innovation.\" Learn more about the Cyber Resilience Act and its impact on open source.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4334:\"\n<p>As the world’s most popular open source content management system, WordPress acknowledges the European Union&#8217;s initiative to bolster the cybersecurity of digital hardware and software products with the <a href=\"https://www.european-cyber-resilience-act.com/\">Cyber Resilience Act (CRA)</a>. The Act’s effort to counter the increasing threat of cyberattacks and promote informed usage of digital products with increased security updates and transparency is commendable.&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>While we wholly endorse the objectives of the CRA, we are apprehensive about the Act&#8217;s implications on open source software due to unclear terms and definitions. </p>\n</blockquote>\n\n\n\n<p>Specifically, the Act’s prohibition on &#8220;unfinished software&#8221; and ambiguous definition of &#8220;commercial activity&#8221; could inadvertently inhibit innovation and economic participation in the European digital landscape.</p>\n\n\n\n<p>Open source projects, like WordPress, often rely on continual updates and improvements—a process that may technically fall under the label of &#8220;unfinished.&#8221; Furthermore, the ambiguous definition of &#8220;commercial activity&#8221; could unintentionally encompass open source projects that are largely driven by communities and operate on a not-for-profit basis.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Our letter to the EU Commission</h2>\n\n\n\n<p>We have jointly authored an open letter addressing these concerns alongside fellow open source projects Drupal, Joomla!, and TYPO3<sup data-fn=\"eb28afbc-3487-447f-9af9-8b0418310a00\" class=\"fn\"><a href=\"#eb28afbc-3487-447f-9af9-8b0418310a00\" id=\"eb28afbc-3487-447f-9af9-8b0418310a00-link\">1</a></sup>. The letter emphasizes the significant contribution of Free and Open Source Software (FOSS) to the EU&#8217;s economy and how the proposed regulations might undermine these efforts. Our shared goal is to further bolster the security of digital products without compromising the values of freedom, democracy, and innovation inherent to both the open source community and the <a href=\"https://european-union.europa.eu/principles-countries-history/principles-and-values/aims-and-values_en\">EU’s Aims and Values</a>.</p>\n\n\n\n<p>The letter invites the EU Commission and interested parties to participate in a seminar in Brussels to discuss how we can align the objectives of the CRA with the realities and needs of the FOSS community. We are optimistic that, with mutual understanding and cooperation, we can achieve secure digital products without limiting the vital contributions of open source projects.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-2 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://wordpress.org/news/files/2023/08/Open_Letter_on_the_Significance_of_Free_and_Open_Source_Software_in_the_EU_s_Proposed_Cyber_Resilience_Act.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Read the letter</a></div>\n</div>\n\n\n\n<div style=\"height:50px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\" style=\"padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)\"><ol class=\"wp-block-footnotes\"><li id=\"eb28afbc-3487-447f-9af9-8b0418310a00\"><a href=\"https://www.drupal.org/\">Drupal</a>, <a href=\"https://www.joomla.org/\">Joomla!</a>, <a href=\"https://typo3.com/\">TYPO3</a>, and <a href=\"https://wordpress.org/\">WordPress</a> are the most popular FOSS content management systems on the web today. While all are based on the PHP programming language and distributed under the GPL open source license, each platform takes a different approach to website publishing. With strength in diversity, they form the Inter-CMS Working Group, promoting the values and benefits of free and open source software. <a href=\"#eb28afbc-3487-447f-9af9-8b0418310a00-link\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/21a9.png\" alt=\"↩\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" />︎</a></li></ol></div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15686\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.3 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Aug 2023 16:55:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15615\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:226:\"WordPress 6.3 Release Candidate 3 is now available for download and testing.\n\nThe WordPress 6.3 release is scheduled for August 8, 2023—just one week away. Now is your last opportunity to test it before the general release. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6221:\"\n<p>WordPress 6.3 RC3 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC3 on a test server and site.&nbsp;</p>\n\n\n\n<p>The WordPress 6.3 release is scheduled for August 8, 2023—just one week away. Now is your last opportunity to test it before the general release.&nbsp;</p>\n\n\n\n<p>For a deeper look into this release, read this overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, review <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>, or <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">watch a recorded demo</a>.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new since RC2</h2>\n\n\n\n<p>Since the RC2 release on July 25, 2023, there have been approximately 14 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Github</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=07%2F25%2F2023..08%2F01%2F2023&amp;milestone=6.3&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac</a>. To prepare for 6.3 general availability, RC3 also addresses several <a href=\"https://github.com/WordPress/gutenberg/pull/53089\">bugs</a> and adds fixes for retrieving templates (<a href=\"https://github.com/WordPress/wordpress-develop/pull/4940\">#4940</a>) and resolving child theme issues (<a href=\"https://github.com/WordPress/gutenberg/issues/53138\">#53138</a>). Thank you for testing, WordPressers!</p>\n\n\n\n<p>Developers and extenders should review the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a> for detailed technical notes regarding new features and improvements.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Ways to contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by the community of people collaborating on and contributing to its development. The resources below outline a variety of ways you can help, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Download RC3 for testing</h3>\n\n\n\n<p>You can test WordPress 6.3 RC3 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2:</strong> Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC3.zip\">RC3 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3: </strong>Use the following WP-CLI command:<br><code>wp core update --version=6.3-RC3</code></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Keep WordPress bug-free—help with testing</h3>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>Do you build themes or plugins? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>This is your final opportunity to test your latest versions against RC3. You will want to continue your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a>&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p>Phase two, soon complete<br>A monumental release<br>Then onto six-four.</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/meher/\">@Meher</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">@DanSoschin</a>, and <a href=\"https://profiles.wordpress.org/jpantani/\">@jpantani</a></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15615\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"People of WordPress: Ihtisham Zahoor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/07/people-of-wordpress-ihtisham-zahoor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2023 20:22:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:10:\"Interviews\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:9:\"HeroPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:19:\"People of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15589\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"People of WordPress features Ihtisham Zahoor, an administrator turned web developer from Pakistan.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:12334:\"\n<p>From administrator to web developer thanks to the supportive WordPress community. Through learning from other software users in Pakistan, Ihtisham Zahoor knew that his life would change. He moved cities and careers to make his life through open source.</p>\n\n\n\n<p><strong>The&nbsp;<em>People of WordPress</em>&nbsp;series shares inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</strong></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1024%2C768&#038;ssl=1\" alt=\"Ihtisham Zahoor in the moutains.\" class=\"wp-image-15478\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1536%2C1152&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?w=1900&amp;ssl=1 1900w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Ihtisham, from Haripur, a city in northern Pakistan, said: “The WordPress community made me a firm believer in the power of open source software. This is why I am an enthusiast and one who enjoys contributing back to the community via writing, speaking, and helping organize meetups.”</p>\n\n\n\n<p>When Ihtisham discovered WordPress, his fascination for working with computing grew. He knew he did not want to just work in administration his entire career.</p>\n\n\n\n<p>Ihitsham describes himself as an ‘introvert’ and therefore the idea of remote work appealed as he could still add value to others through technology. He was intrigued by the thought of the freedom to choose his work hours. However, without access to others who had already transformed their careers and lives through web development, he felt he ‘had no path to follow to turn my dream into a reality.’</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Challenges become opportunities to learn when there is an active community&nbsp;&nbsp;</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"675\" height=\"900\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?resize=675%2C900&#038;ssl=1\" alt=\"Ihtisham Zahoor wearing a sweatshirt with the London tube sign \'Mind the Gap\'.\" class=\"wp-image-15480\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?w=675&amp;ssl=1 675w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?resize=225%2C300&amp;ssl=1 225w\" sizes=\"(max-width: 675px) 100vw, 675px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Lacking any kind of informed support network to advise or guide him, Ihtisham devoted time to online research to find the next steps he could take. Looking back, he believes that for those who are not in a network with others with similar interests, it can be hard to keep learning and experimenting with new things. Isolation can be a barrier to working in web development.&nbsp;&nbsp;</p>\n\n\n\n<p>He said: “I think it is not easy to stay motivated when there aren’t immediate rewards for the hard work we do. Sometimes, weeks would go by when my only focus would be to stay motivated rather than give up.”</p>\n\n\n\n<p>After another two years of combining learning and work, Ihtisham took up using WordPress as a full-time career. He moved to the capital of Pakistan, Islamabad. It was not easy at first. He recalls: “After many failed attempts at getting hired and desperate moments, I finally received an offer from a digital agency as a web developer focused on the WordPress platform.”</p>\n\n\n\n<p>He added: “Moving to work with a bigger agency was one of the best decisions of my life as it helped me with my professional growth by becoming familiar with the whole WordPress ecosystem in a supportive environment. I was valued for my opinions in the web projects in which I was involved. I was also appreciated and encouraged for the open source work I did for the company.” He summarized his enthusiasm for WordPress like this: “It is really interesting figuring out what is happening in the backends. I like problem-solving and finding solutions which you can do with WordPress.”</p>\n\n\n\n<p>During the Covid-19 pandemic, Ihtisham moved to join a start-up based in his hometown which provides web development services to international clients. He works as a developer and has the opportunity to learn more about client communication and project management. “WordPress has opened up so many opportunities for me. It has been an exciting journey for me with lots of learning every day,” he said. In particular, he has discovered an interest in APIs and regularly uses his spare time to follow tickets in the hope of one day contributing even more to topics, such as, third-party app integration through APIs on WordPress sites.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Give back through WordPress community</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"800\" height=\"599\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=800%2C599&#038;ssl=1\" alt=\"Ihtisham Zahoor speaking at a meetup.\" class=\"wp-image-15477\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?w=800&amp;ssl=1 800w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=768%2C575&amp;ssl=1 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>It was not just software that made a difference in Ihtisham’s life. Joining a welcoming and sharing community was transforming for him. Recalling those early days of isolation, he values the WordPress community and is wholly committed to the power of open-source software. He now enjoys writing, speaking, and organizing meetups to give back to both to the community. He has written software for the platform and contributes to the Core work, which he describes as a ‘humbling’ experience. He is fond of <a href=\"https://islamabad.wordcamp.org/\">WordCamp Islamabad</a> and in 2023 is on the organizing team to help bring both WordPress and its community to others in Pakistan.</p>\n\n\n\n<p>“My first experience,” he said, “was that everyone was so friendly and open to sharing what they have learned, even though they were all busy working. This really had an impact on me. It really helped me and gave me the confidence that I could work with WordPress…. It was a real step forward for me joining this community.” </p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"512\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=1024%2C512&#038;ssl=1\" alt=\"Ihtisham visited WordCamp Karachi.\" class=\"wp-image-15482\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=1024%2C512&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=300%2C150&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=768%2C384&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?w=1200&amp;ssl=1 1200w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>A particular meeting in 2018 led to new friendships through the WordPress community. Ihtisham was on a train to Karachi for the first ever Pakistani WordCamp in 2018 and met a group of fellow attendees he now regards as close friends. What impressed him most about the camp was that although he met many people with considerable expertise, they also had a generosity of spirit and humbleness in their willingness to share this knowledge. in sharing it. Now, he and this group of friends make a point to taking trains across the country, which allows him to fulfil another dream of traveling widely. He says these things and other ‘side benefits’ have been made possible by the WordPress community, and for that, he is &#8216;forever grateful&#8217;.<br><br>Ihtisham particularly wanted to share his story through this People of WordPress article to encourage those starting with little or no support to remain persistent. He knows from experience breaking into the tech world can be hard, especially when you may be switching from doing something else and have no ‘track record’ to offer. </p>\n\n\n\n<p>He feels he is a living example of how perseverance can lead to success. He offers these words to anyone thinking of making a move into development using the WordPress platform: “I attribute my success (financial and mental well-being) to the open-source nature of WordPress and its amazing community. It would not be possible to learn and use the plethora of free tools WordPress provides if it weren’t an open-source platform. It is for that reason I feel obligated to contribute back to this platform to the best of my abilities.” To those who are finding getting going difficult, as he did, he adds: “Get yourself a clear learning path and just dive in doing WordPress, and things will get better for you over time as they were for me, I promise. Good Luck!”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community.&nbsp;Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<p>To help you discover more about how to use the WordPress software, there is a free resource from the community, <a href=\"https://learn.wordpress.org/\">Learn.WordPress.org</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributors</h2>\n\n\n\n<p>Thanks to Ihtisham Zahoor (<a href=\"https://profiles.wordpress.org/shaampk1/\">@shaampk1</a>) for sharing about his adventures in WordPress.</p>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\"//profiles.wordpress.org/webcommsat/\">@webcommsat</a>), Nalini Thakor (<a href=\"//profiles.wordpress.org/nalininonstopnewsuk/\">@nalininonstopnewsuk</a>), and Meher Bala (<a href=\"//profiles.wordpress.org/meher/\">@meher</a>) for interviews, the feature and collaborating on images. To Chloe Bringmann (<a href=\"//profiles.wordpress.org/cbringmann/\">@cbringmann</a>), Mark Smallman (<a href=\"//profiles.wordpress.org/marks99/\">@marks99</a>), and Mary Baum (<a href=\"//profiles.wordpress.org/marybaum/\">@marybaum</a>) for reviews. Thanks to the late Surendra Thakor (<a href=\"//profiles.wordpress.org/sthakor/\">@sthakor</a>), Maja Loncar (<a href=\"//profiles.wordpress.org/majaloncar/\">@majaloncar</a>), Maedah Bahtool (<a href=\"//profiles.wordpress.org/maedahbatool/\">@maedahbatool</a>) and other members of the Marketing and Polyglots Team for their contributions.</p>\n\n\n<p>The People of WordPress series thanks Josepha Haden (<a href=\"//profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>) and Topher DeRosia (<a href=\"//profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) for their support.</p>\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\" style=\"grid-template-columns:29% auto\"><figure class=\"wp-block-media-text__media\"><img decoding=\"async\" loading=\"lazy\" width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&#038;ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" data-recalc-dims=\"1\" /></figure><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\n\n<p></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15589\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Synced Patterns: The Evolution of Reusable Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 14:45:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Features\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15541\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:369:\"Synced patterns are replacing Reusable blocks, offering a unified creation experience for new pattern functionality coming to WordPress 6.3. Patterns, first introduced in WordPress 5.5, are a collection of blocks that make it simple to add complex layouts and designs to any WordPress site without starting from scratch. With WordPress 6.3, set to be released [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"annezazu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6153:\"\n<p>Synced patterns are replacing Reusable blocks, offering a unified creation experience for new pattern functionality coming to WordPress 6.3. Patterns, first introduced in WordPress 5.5, are a collection of blocks that make it simple to add complex layouts and designs to any WordPress site without starting from scratch. With WordPress 6.3, set to be released on August 8th, you will be able to arrange blocks in unlimited ways and save them as patterns for use throughout your site, directly within the editing experience. You can also specify whether to sync your patterns, so that one change applies to all parts of your site, or to keep them unsynced, so you can customize each instance.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/plZIF3jrU7E?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Create your own patterns</h2>\n\n\n\n<p>The ability to create your own patterns, on top of using the ones bundled into each WordPress release, opens up a world of possibilities. Need to repeat the same contact information across your site and keep it up to date? Create a synced pattern with all the details, and say goodbye to repeating yourself, with the ability to quickly insert the synced pattern wherever you need it. If you find yourself creating various banners for your site and want them to have the same layout with unique content, creating an unsynced pattern speeds up your workflow and ensures a level of consistency in approach. While themes and plugins have been able to offer patterns to users and <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/curating-the-editor-experience/#utilizing-patterns\">curate the experience</a>, this update allows agencies and site builders to do the same for their clients, directly in the site building process.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Dig into the details</h2>\n\n\n\n<p>Any previously made Reusable blocks will continue to function as they do now, just under the new Synced pattern name. To help adjust to these changes, a few contextual notices will be placed throughout the interface. Specifically, the menu item in the creation flow will show as “Create pattern/reusable block” until the prompt describing the switch is dismissed in one of the various locations, including the naming and syncing modal:&nbsp;</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/fbrhammtn3Y?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>For folks using block themes, all patterns will be listed alongside template parts in the Site Editor &gt; Patterns section, where you can enter a focused editing mode to make changes. For Classic themes, the prior reusable block management page will now house patterns in a list, similar to the Posts &gt; All Posts view.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"590\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=1024%2C590&#038;ssl=1\" alt=\"Patterns section of the WordPress Site Editor with My Patterns selected\" class=\"wp-image-15569\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=1024%2C590&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=300%2C173&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=768%2C443&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=1536%2C885&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?w=2048&amp;ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>For a complete overview of patterns on your site, all patterns provided by themes and plugins will be shown in this section but without the option to edit directly.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Go further</h2>\n\n\n\n<p>With the ability to create your own patterns baked into the creation experience, remember that you can copy the patterns available in the <a href=\"https://wordpress.org/patterns/\">Pattern Directory</a> and <a href=\"https://wordpress.org/patterns/about/\">contribute back</a>, an excellent way to democratize design for every WordPress user and the web.</p>\n\n\n\n<p><em>For more exciting features coming to patterns in WordPress 6.3, </em><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\"><em>read on in the Advancing the Power of Patterns post</em></a><em>. Thank you to the contributors who collaborated on this post: </em><a href=\"https://profiles.wordpress.org/cbringmann/\"><em>Chloé Bringmann</em></a><em>, </em><a href=\"https://profiles.wordpress.org/jpantani/\"><em>Jonathan Pantani</em></a><em>, </em><a href=\"https://profiles.wordpress.org/chanthaboune/\"><em>Josepha</em></a><em>, </em><a href=\"https://profiles.wordpress.org/kristastevens/\"><em>Krista Stevens</em></a><em>, </em><a href=\"https://profiles.wordpress.org/eidolonnight/\"><em>Nicholas Garofalo</em></a><em>, <a href=\"https://profiles.wordpress.org/provenself/\">Peter Rubin</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15541\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.3 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jul 2023 16:43:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15460\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:246:\"WordPress 6.3 RC2 is ready for download and testing. Reaching this part of the release cycle is a key milestone. While release candidates are considered ready for final release, additional testing and use by the community can only make it better.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Meher Bala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7642:\"\n<p>WordPress 6.3 RC2 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, or run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC2 on a test server and site.&nbsp;</p>\n\n\n\n<p>While release candidates are considered ready for final release, additional testing and use by the community can only make it better.</p>\n\n\n\n<p>WordPress 6.3 is scheduled for release on August 8, 2023 – just two weeks from today.</p>\n\n\n\n<p>Get an overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, review <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>, or <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">watch a recorded demo</a>.</p>\n\n\n\n<p>Developers and extenders should review the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a> for detailed technical notes regarding new features and improvements.&nbsp;&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">RC2 Highlights</h2>\n\n\n\n<p>Since the RC1 release on July 18, 2023, there have been approximately 15 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\" data-type=\"link\" data-id=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Editor</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=07%2F18%2F2023..07%2F25%2F2023&amp;milestone=6.3&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac</a>.</p>\n\n\n\n<p>Notable updates for this release include:</p>\n\n\n\n<ul>\n<li>Footnotes will be reverted or restored with post revisions (<a href=\"https://github.com/WordPress/gutenberg/pull/52686\">#52686</a>).</li>\n\n\n\n<li>Distraction free adds a missing command in the site editor (<a href=\"https://github.com/WordPress/gutenberg/pull/52868\">#52868</a>).</li>\n\n\n\n<li>Global styles revisions will display text if no revisions are found (<a href=\"https://github.com/WordPress/gutenberg/pull/52865\">#52865</a>).</li>\n\n\n\n<li>The About Page has been completed (<a href=\"https://core.trac.wordpress.org/ticket/58067\">#58067</a>).</li>\n\n\n\n<li>The About Page now includes a “Get Involved” section (<a href=\"https://core.trac.wordpress.org/ticket/23348\">#23348</a>).</li>\n\n\n\n<li>The dark mode option has been restored in the block editor iframe for Twenty Twenty-One (<a href=\"https://core.trac.wordpress.org/ticket/58835\">#58835</a>).</li>\n\n\n\n<li>Max height value was fixed in the image scaling in the Edit Media screen (<a href=\"https://core.trac.wordpress.org/ticket/50523\">#50523</a>).</li>\n\n\n\n<li>Additionally, some issues regarding internationalization were addressed (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58879\" target=\"_blank\">#58879</a>, <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58067\" target=\"_blank\">#58067</a> and <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58864\" target=\"_blank\">#58864</a>).</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Test features in WordPress 6.3</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during the Beta/RC phases</h2>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get WordPress 6.3 RC2</h2>\n\n\n\n<p>You can test WordPress 6.3 RC2 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC2.zip\">RC2 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3:</strong> Use the following WP-CLI command:<br><code>wp core update --version=6.3-RC2</code></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thanks to WordPress plugin and theme developers</h2>\n\n\n\n<p>Do you build plugins and themes? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>Hopefully, you have already tested your themes and plugins with WordPress 6.3 betas by now. With RC2, you will want to continue your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Haiku for RC2</h2>\n\n\n\n<p>Time is nearly here<br>WordPress shines thanks to you all<br>Let’s get testing, dear</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/priethor/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/priethor/\">@Priethor</a></em>,<em> <a href=\"https://profiles.wordpress.org/audrasjb/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/audrasjb/\">@AudrasJb</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\" data-type=\"link\" data-id=\"https://profiles.wordpress.org/davidbaumwald/\">@DavidBaumwald</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">@DanSoschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">@JPantani</a></em> and <em><a href=\"https://profiles.wordpress.org/meher/\">@Meher</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"WordPress 6.3 Live Product Demo – Highlights &amp; Recording\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jul 2023 19:26:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"live demo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15445\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"Watch a demonstration of some of the newest features of WordPress 6.3, recorded live on July 20, 2023.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8111:\"\n<p>WordPress 6.3 ships on August 8th! For a sneak peek of what&#8217;s to come, members of the 6.3 release squad, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> and <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, held a live demo moderated by <a href=\"https://profiles.wordpress.org/njwrigley/\">Nathan Wrigley</a>.&nbsp;</p>\n\n\n\n<p>More than 100 attendees watched as some of the most anticipated product features were demonstrated, from the brand-new Command Palette to new design tools and more.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/I2dvEbBxaqA?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div><figcaption class=\"wp-element-caption\">6.3 Live Product Demo</figcaption></figure>\n\n\n\n<p>Here are some of the key takeaways from the 6.3 live product demonstration.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Command Palette’s big debut</h2>\n\n\n\n<p>One of the most anticipated features of 6.3 is the <a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Command Palette</a>. It lets you quickly navigate and open different WordPress functions within the post and Site Editor. Access it using a shortcut command (Command + K or Control + K).</p>\n\n\n\n<h2 class=\"wp-block-heading\">Page creation gets easier in the Site Editor</h2>\n\n\n\n<p>Now you can browse and edit pages within the Site Editor, providing a more cohesive WordPress experience. A new drafting flow debuts, allowing you to create and publish pages directly within the editor.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Synced Patterns set to replace Reusable Blocks</h2>\n\n\n\n<p>You can create and manage all your patterns directly in the Site Editor. Once edited, all synced patterns (previously called Reusable Blocks) will change across a site—a huge time saver when making changes.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Stay on top of design changes with Style Revisions</h2>\n\n\n\n<p>This enhancement offers a visual timeline of your site so you can see all the revisions in your site’s history and restore a previous style with just a click.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">New design tools and blocks</h2>\n\n\n\n<p>Controls for specifying aspect ratios to ensure design integrity, especially when using images in Patterns debut in 6.3, along with new blocks for Footnotes and Details. Easily add footnotes to your content and have them automatically linked to the corresponding text. With the Details block, hide or display content to create spoilers or accordions.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Performance</h2>\n\n\n\n<p>WordPress is getting faster with 6.3 as content with images will see speedier load times. Both theme types (Classic and Block) will also benefit from performance improvements. The upcoming <a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">hallway hangout</a> is an excellent opportunity to learn more about performance enhancements directly from the WordPress Performance team.</p>\n\n\n\n<h2 class=\"wp-block-heading\">More from Core</h2>\n\n\n\n<ul>\n<li>Revert to previously installed versions when <a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">manual updates for themes and plugins fail</a>.&nbsp;</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/05/dropping-support-for-php-5/\">Dropping support</a> for PHP 5. The new minimum supported version of PHP will be 7.0.0. The recommended version of PHP remains at 7.4 or greater.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">Accessibility updates</a>, especially for List View and the broader Site Editor experience.</li>\n\n\n\n<li>Improvements to internationalization <a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">just-in-time translation loading</a>.</li>\n</ul>\n\n\n\n<p>These new features and more await you as Phase 2 of the <a href=\"https://wordpress.org/about/roadmap/\">WordPress Roadmap</a> comes to a close with the 6.3 release.</p>\n\n\n\n<p>A <a href=\"https://make.wordpress.org/core/2023/07/21/6-3-live-product-demo-qa/\">question and answer session</a> followed the demo, with attendees asking plenty of great questions. The panelists shared links for additional reading regarding many new features—all conveniently added to the end of this post.&nbsp;</p>\n\n\n\n<p>A big thank you to everyone who helps make WordPress. Contributors power every WordPress release. Without the hundreds of contributors worldwide who help build WordPress, this live product demo wouldn’t have been possible. Thank you for all of your hard work.</p>\n\n\n\n<h2 class=\"wp-block-heading\">References from the Live Demo</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\">Core Editor Improvement: Advancing the Power of Patterns</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/documentation/article/comparing-patterns-template-parts-and-reusable-blocks/\">Comparing Patterns, Template Parts, and Reusable Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">The 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/05/dropping-support-for-php-5/\">Dropping support for PHP 5</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">Internationalization Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/30496\">#30496 Site Editor: MVP Customizer Compatibility/Integration</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/52128\">#52128 Customization Ongoing Roadmap</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/building-sidebars-with-the-site-editor/\">Building sidebars with the Site Editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n</ul>\n\n\n\n<p>Props to <a href=\'https://profiles.wordpress.org/richtabor/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>richtabor</a> and <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a> for reviewing this post and to <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/meher/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>meher</a>, and <a href=\'https://profiles.wordpress.org/dansoschin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>dansoschin</a> for their logistics support to run the event.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15445\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.3 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Jul 2023 17:08:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15431\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:246:\"WordPress 6.3 RC1 is ready for download and testing. Reaching this part of the release cycle is a key milestone. While release candidates are considered ready for final release, additional testing and use by the community can only make it better.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Dan Soschin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:11307:\"\n<p>WordPress 6.3 RC1 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC1 on a test server and site.&nbsp;</p>\n\n\n\n<p>Reaching this part of the release cycle is a key milestone. While release candidates are considered ready for final release, additional testing and use by the community can only make it better.</p>\n\n\n\n<p>Get an overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, and review the <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>. Save the date for a <a href=\"https://wordpress.org/news/2023/07/6-3-live-product-demo/\">live product demo</a> scheduled for Thursday, July 20, 2023, at 16:00 UTC (<a href=\"https://us02web.zoom.us/j/88141234315?pwd=TE1Odk5Wd0hiVlNYWHB5Q2xCYkhSZz09\">Zoom link</a>). This live demo will be a great opportunity to join the WordPress community to celebrate the accomplishments of 6.3 and this final chapter of <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">RC1 highlights</h2>\n\n\n\n<p>Thanks to the many WordPress beta testers, this release contains 40+ (Editor) and 80+ (Trac) updates since the <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-beta-4/\">Beta 4 release</a>. Keep it up WordPressers!</p>\n\n\n\n<p>Notable updates for this release include:</p>\n\n\n\n<ul>\n<li>WordPress database error when installing PHPUnit tests (<a href=\"https://core.trac.wordpress.org/ticket/58673\">#58673</a>)</li>\n\n\n\n<li>Use <code>_get_block_template_file</code> function and set $area variable (<a href=\"https://github.com/WordPress/gutenberg/pull/52708\">#52708</a>)</li>\n\n\n\n<li>Indicate when a theme supports the Site editor in the Themes REST API response (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58123\" target=\"_blank\">#58123</a>)</li>\n\n\n\n<li><code>bulk_edit_posts()</code> function needs an action hook (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/28112\" target=\"_blank\">#28112</a>)</li>\n\n\n\n<li>Allow editing existing footnote from formats toolbar (<a href=\"https://github.com/WordPress/gutenberg/pull/52506\">#52506</a>)</li>\n\n\n\n<li>Patterns: Add client side pagination to patterns list (<a href=\"https://github.com/WordPress/gutenberg/pull/52538\">#52538</a>)</li>\n\n\n\n<li>Trim footnote anchors from excerpts (<a href=\"https://github.com/WordPress/gutenberg/pull/52518\">#52518</a>)</li>\n</ul>\n\n\n\n<p>Browse the technical details for issues addressed since Beta 4 using these queries:</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">GitHub commits for 6.3</a></li>\n\n\n\n<li>Closed <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=07%2F11%2F2023..07%2F18%2F2023&amp;milestone=6.3&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac tickets</a> since July 11</li>\n</ul>\n\n\n\n<p>For a recap of what’s coming in 6.3, please refer to the <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">Beta 2 post</a>, which summarizes key features.</p>\n\n\n\n<p>You can also dig into technical information about various components in 6.3:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\">Core Editor Improvement: Advancing the Power of Patterns</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</a></li>\n</ul>\n\n\n\n<p>For a compilation of the dev notes above and more, read the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a>.&nbsp;&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Test the new features in WordPress 6.3</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during the Beta/RC phases</h2>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get WordPress 6.3 RC1</h2>\n\n\n\n<p>You can test WordPress 6.3 RC1 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC1.zip\">RC1 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3:</strong> Use the following WP-CLI command:<br><code>wp core update --version=6.3-RC1</code></li>\n</ul>\n\n\n\n<p>The current target for the final release is <strong>August 8, 2023</strong>, about three weeks away. Your help testing this version ensures everything in this release is the best.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thanks to WordPress plugin and theme developers</h2>\n\n\n\n<p>Do you build plugins and themes? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>Chances are, you have already been testing your latest themes and plugins with WordPress 6.3 betas. With RC1, you will want to complete your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 6.3 release cycle.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Haiku for RC1</h2>\n\n\n\n<p>RC1 is here<br>Hold your applause ‘til the end<br>Download, test, repeat</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: </em><a href=\"https://profiles.wordpress.org/dansoschin/\"><em>@DanSoschin</em></a>, <a href=\"https://profiles.wordpress.org/meher/\"><em>@Meher</em></a>, and <a href=\"https://profiles.wordpress.org/jpantani/\"><em>@JPantani</em></a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15431\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"WP Briefing: Episode 60: Sneak a Peek at WordPress 6.3 with Special Guest Mike Schroder\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wordpress.org/news/2023/07/episode-60-sneak-a-peek-at-wordpress-6-3-with-special-guest-mike-schroder/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 17 Jul 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=15398\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:176:\"Join WordPress Executive Director Josepha Haden Chomphosy and Core Tech Lead Mike Schroder as they discuss their favorite new features and enhancements coming in WordPress 6.3.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2023/07/WP-Briefing-060.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:31362:\"\n<p>Join WordPress Executive Director Josepha Haden Chomphosy and Core Tech Lead Mike Schroder as they discuss their favorite new features and enhancements coming in WordPress 6.3.</p>\n\n\n\n<p><em><strong>Have a question you’d like answered? You can submit them to&nbsp;<a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Host: <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden Chomphosy</a><br>Guests: <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a><br>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a><br>Song: Fearless First by Kevin MacLeod</p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/6-3/\">WordPress 6.3 Development Cycle and Release Team</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3:&nbsp;Rollback&nbsp;for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\">Core Editor Improvement: Advancing the power of Patterns</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/22/core-editor-improvement-smoother-site-editing/\">Core Editor Improvement: Smoother Site Editing</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/whats-new-in-gutenberg-16-1-29-june/#text-blocks-now-with-footnotes\">Text blocks: now with footnotes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/?s=%22details+block%22#details-block\">The Details block is now stable</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n\n\n\n<li><strong>A small list of big things</strong>\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/07/05/wcus-2023-contributor-day-help-needed/\">WCUS 2023 Contributor Day: Help Needed!</a> &#8211; The WordCamp US Contributor Team is asking for help with their new approach to organizing this year’s Contributor Day.</li>\n\n\n\n<li>Watch the <a href=\"https://us.wordcamp.org/2023/news/\">WCUS News page</a> for a call for open-source-related art, poetry, and music.</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/category/releases/\">WordPress Releases</a> &#8211; Find WordPress 6.3 RC1 and other releases.</li>\n\n\n\n<li><a rel=\"noreferrer noopener\" href=\"https://make.wordpress.org/community/2023/06/16/celebrating-the-completion-of-the-meetup-reactivation-project/\" target=\"_blank\">Celebrating the Completion of the Meetup Reactivation Project</a></li>\n</ul>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/06/22/attention-wordpress-event-organizers-this-important-workshop-on-july-20-2023-is-for-you/\">WP Diversity Workshop for WordPress event organizers</a> &#8211; Join this 2.5-hour interactive watch party online on July 20, 2023, to learn how to create welcoming and diverse WordPress&nbsp;Meetups&nbsp;and WordCamps for your WordPress community.</li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/6-3-live-product-demo/\">6.3 Live Product Demo</a></li>\n</ul>\n</li>\n</ul>\n\n\n\n<span id=\"more-15398\"></span>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<p><em>( Intro music )</em></p>\n\n\n\n<p>[00:00:00] <strong>Josepha:</strong> Hello, everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks.</p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p><em>( Intro music continues )</em></p>\n\n\n\n<p>[00:00:39] <strong>Josepha:</strong> We have with us Mike Schroder. They are on the WordPress 6.3 release squad, and I believe, Mike, that your role there is the Core Tech Lead.</p>\n\n\n\n<p>Is that right?</p>\n\n\n\n<p>[00:00:50] <strong>Mike:</strong> Yeah, that&#8217;s correct. I&#8217;m one of the tech leads along with Andrew Ozz and David Baumwald.</p>\n\n\n\n<p>[00:00:56] <strong>Josepha:</strong> Thank you so much for being able to join me today.</p>\n\n\n\n<p>[00:00:58] <strong>Mike:</strong> Thanks for inviting me.</p>\n\n\n\n<p>[00:01:00] <strong>Josepha:</strong> This is our 6.3 sneak peek, and so it has a little bit of a &#8220;What do you wish people knew about the upcoming release?&#8221; aspect to it, but it also has like a &#8220;What do we find most interesting about the work that we&#8217;ve been doing in this release so far?&#8221;</p>\n\n\n\n<p>As the Core Tech Lead, what currently is like your favorite thing that y&#8217;all are getting into the release or the thing that&#8217;s the most interesting or happiest to finally be done with it?</p>\n\n\n\n<p>[00:01:27] <strong>Mike:</strong> Yeah, I think there are a couple of things. So I was playing around with the release in anticipation for this, and one of the favorite sort of user-facing features that I played with was the live preview for Block themes. And it just makes it feel so intuitive to open up a new Block theme and play around with Styles and different designs and see how it looks.</p>\n\n\n\n<p>I really enjoyed it, opened it up on my personal site and started messing around with different color palettes and things like that, and it was a lot of fun.</p>\n\n\n\n<p>[00:01:55] <strong>Josepha:</strong> Like it&#8217;s a live preview, but also with all of the content they already have on your site.</p>\n\n\n\n<p>[00:01:59] <strong>Mike:</strong> It does use the templates and so it, it shows some of the live content from the from the homepage, for instance, and some of those blocks, and some of the other areas are editing the templates rather than the live content. But yes, it was neat to play around with it and see my blog content in the background and yeah, some real-time design. That was really fun.</p>\n\n\n\n<p>[00:02:20] <strong>Josepha:</strong> And has that been a big focus of the release? Was it something that you and the other Tech Leads both for the Core side and the Editor side just had to focus a lot on in this round of the release?</p>\n\n\n\n<p>[00:02:33] <strong>Mike:</strong> So I was not a part of a lot of that work. So I&#8217;m not gonna take credit for it. I think that is the culmination, all of those different things together of a lot of the things that the Editor team has been working on for some time. And it was just, it was really refreshing to see it.</p>\n\n\n\n<p>The other feature that I had in my head, if it&#8217;s okay for me to talk about a second one, is something that has been trying to get landed in Core for quite some time, and that has to do with automatic rollbacks. If plugin updates or theme updates start to happen and then they fail in the middle of that update, then it will automatically restore the previous version of the plugin or theme. And that&#8217;s a pretty big improvement over the previous behavior, which could result not as well.</p>\n\n\n\n<p>[00:03:16] <strong>Josepha:</strong> Right. Where you would just have a site that was like, &#8220;Best of luck to you,&#8221; and emails that told you what kind of probably was broken. I shouldn&#8217;t be sassy about that. The WSOD protection that we put in really was a huge leap forward for the way that we handled that in the past, but this is great news.</p>\n\n\n\n<p>[00:03:34] <strong>Mike:</strong> Yes, I was so excited when that landed, and this is I guess the next part of that. And it&#8217;s been, yeah, it&#8217;s been in the works for a long time, through testing and there was an entire team that did a lot of work on it in a future plugin. And I&#8217;m very excited to see it land.</p>\n\n\n\n<p>[00:03:49] <strong>Josepha:</strong> That&#8217;s great. That&#8217;s one of those things that we hope a WordPress user never has to know exists. Like it&#8217;s always our hope that the plugins work perfectly and the themes work perfectly. And so unless something is going really wrong you won&#8217;t know that&#8217;s a feature. Surely it tells you like, &#8220;This didn&#8217;t update by the way. Go figure that out.&#8221;</p>\n\n\n\n<p>[00:04:08] <strong>Mike:</strong> Yeah, the whole idea of this particular feature is to make it feel more like everything is smooth and one site continues to work, and the underpinning of it has been going in for a couple of releases. The whole idea is to make the experience more smooth for users.</p>\n\n\n\n<p>[00:04:21] <strong>Josepha:</strong> Cool. That auto rollback actually was not on my radar as a thing to keep an eye out for in this release, so that&#8217;s really neat. One of the things that I saw as I was doing, I don&#8217;t do any complicated testing. I mostly do like testing of what users would expect with the workflow with my eyeballs and a mouse.</p>\n\n\n\n<p>[00:04:40] <strong>Mike:</strong> Well, that&#8217;s, that&#8217;s wonderful.</p>\n\n\n\n<p>[00:04:42] <strong>Josepha:</strong> I&#8217;m not doing any of the fancy testing with like code, but one of the things that I saw as I was working through my general, just regular test, my spot check click around test was that it looks like there&#8217;s some consolidation, some consolidation of the navigation in the Editor.</p>\n\n\n\n<p>So, it had I think maybe Pages and Templates in there before, and now there are five things in there. Do you have a bit of a concept of what went into that, what we&#8217;re hoping everybody&#8217;s gonna be able to accomplish there now?</p>\n\n\n\n<p>[00:05:13] <strong>Mike:</strong> So I, I was not involved as much in the later stages of this, but I was in a couple of the first couple iterations of this particular feature, and I think this is, I don&#8217;t want to guess the exact amount of times that this has been sort of reworked so the experience is good for users, there been so much effort that&#8217;s gone into helping navigation be a comfortable experience for people to work with within the site editor.</p>\n\n\n\n<p>And what I have heard is that everyone that&#8217;s worked on it is very excited that it&#8217;s landing and that users will be able to experience it and more easily work with navigation.</p>\n\n\n\n<p>[00:05:46] <strong>Josepha:</strong> Yeah, I think that navigation is one of those things, both like creating good navigation as a software designer, but then also as somebody who&#8217;s like putting together a website. Good navigation is hard to do. And it&#8217;s design where everyone&#8217;s, &#8220;Good design is invisible,&#8221; and we don&#8217;t actually mean that.</p>\n\n\n\n<p>We don&#8217;t mean it&#8217;s invisible. We mean it&#8217;s not intrusive, it doesn&#8217;t get in your way, it acts in the way you think it&#8217;s going to act, and it knows or has a good guess about where you&#8217;re trying to be, what you&#8217;re trying to do in that particular moment on a site. And so like the fact that we&#8217;ve had probably hundreds of people working on navigation inside the software is no surprise to me, but I bet it&#8217;s gonna be a surprise to a lot of people.</p>\n\n\n\n<p>They&#8217;ll be like, &#8220;It&#8217;s like folders, right?&#8221; Turns out it&#8217;s not.</p>\n\n\n\n<p>[00:06:33] <strong>Mike:</strong> Yes, it was, incredibly, incredibly difficult to design. I know there was, the couple instances that I was most involved with, I know there was so much discussion about how folks are used to working with navigation within WordPress and sort of what expectations are for menus and what expectations are for, you know, users both that have been using WordPress for a long time and users who, who are new to WordPress, and the Site Editor. And having all of those considerations from the various stakeholders just makes it a really difficult design problem.</p>\n\n\n\n<p>[00:07:03] <strong>Josepha:</strong> Yeah, absolutely. And I mean, not for nothing like the WP Admin itself, that dashboard inside the WordPress software, like that&#8217;s been due for an update for quite some time. This is the same one that I think we&#8217;ve had since 2008, which was also very disruptive in its way. And so like it was a good disruption, but we really haven&#8217;t made any substantial changes to it since then. And part of it is because there are so many use cases for WordPress, and we don&#8217;t have a good concept of that because we don&#8217;t have a lot of tracking in the software. We don&#8217;t take anyone&#8217;s like data about what field they work in. We don&#8217;t do any of that.</p>\n\n\n\n<p>And so it&#8217;s hard for us to account for all of the use cases and get a really excellent design for a majority of the people that are gonna be using it. Because like we don&#8217;t actually build software for robots around here. Not yet.</p>\n\n\n\n<p>[00:07:54] <strong>Mike:</strong> <em>( laughs )</em> Yeah.</p>\n\n\n\n<p>[00:07:55] <strong>Josepha:</strong> No, I don&#8217;t think we&#8217;ll ever be robot-building software.</p>\n\n\n\n<p>[00:07:57] <strong>Mike:</strong> I doubt it, but I also don&#8217;t wanna predict the future. No, I agree. And I think that is absolutely one of the super tricky things about building WordPress. I&#8217;m really glad that WordPress doesn&#8217;t collect any of that data. And it makes it so that the sort of testing that, that you were talking about, in user studies and things like that, are incredibly helpful for figuring out what the best approaches are.</p>\n\n\n\n<p>[00:08:21] <strong>Josepha:</strong> Yeah, absolutely. Since we&#8217;re just in the zone of like things that Josepha likes and that she saw, I&#8217;m gonna also do this other thing. In one of the last couple of releases, the Style Book came out, which was such an exciting thing for me. It&#8217;s great to be able to see whether or not all of the style choices you&#8217;ve made in various parts of the admin or in the code, depending on how you&#8217;re doing things.</p>\n\n\n\n<p>It&#8217;s nice to make sure, in one big set, that like everything is coherent. Everything that you thought you changed did get changed and it looks the way that you wanted it to look in concert with everything else in there. And it looked like we now have revisions specific to styles, like styling things across the site, have revisions.</p>\n\n\n\n<p>Is that right?</p>\n\n\n\n<p>[00:09:06] <strong>Mike:</strong> That&#8217;s correct.</p>\n\n\n\n<p>[00:09:07] <strong>Josepha:</strong> I think that&#8217;s a super big deal because as somebody who is just, I&#8217;m filled with techno joy. I don&#8217;t always want to look at a manual. I just want to do stuff until it breaks and then hope I can fix it. The hoping you can fix it part <em>( laughs )</em> can sometimes be really nerve-wracking if what you&#8217;re doing is creating a site for a client or you are working on your first big theme and you wanna make sure that&#8217;s all together.</p>\n\n\n\n<p>And so style revisions to go along with some of the Editor revisions I think is a great change.</p>\n\n\n\n<p>[00:09:39] <strong>Mike:</strong> Same. Absolutely. This is not a feature I have, done too much particular playing with, at this point.</p>\n\n\n\n<p>[00:09:44] <strong>Josepha:</strong> You&#8217;re a very skilled developer.</p>\n\n\n\n<p>[00:09:46] <strong>Mike:</strong> I appreciate that. That&#8217;s very kind. I think that adding revisions to anything that folks regularly change in posts or pages is, really important. And making it very easy to get to both make forward changes and also to realize, &#8220;Oh, there was this other change that was, you know, there was three clicks ago that I really loved. How do I get back to that? How do I see the history?&#8221; And that&#8217;s what I love about that sort of feature. Being able to really easily see, &#8220;Okay, when did this happen? In what series? How can I jump back and get to that spot that felt right.&#8221;</p>\n\n\n\n<p>[00:10:19] <strong>Josepha:</strong> Yes. Anytime that we can have that kind of historical layering of things, I think is good. I went to a meetup. I like to go to meetups that are 101 content, because that&#8217;s like the folks that really need new refined processes the most. But I went to a 101 meetup a couple years back, and I remember that the presenter was saying like, take a theme that you pretty much like and make some changes until you have a theme that you love.</p>\n\n\n\n<p>And people kept saying like, &#8220;Yeah, but what if I break everything?&#8221; And he said in the middle of that to everyone, not knowing who I was because who cares? He was like, &#8220;Yeah, WordPress is not gonna let you do anything that will completely destroy a theme or completely destroy your site. There&#8217;s an undo button and you can just undo it. It&#8217;ll be fine.&#8221; And I was like, &#8220;Yeah, that is true now.&#8221;</p>\n\n\n\n<p>[00:11:15] <strong>Mike:</strong> I love that.</p>\n\n\n\n<p>Gosh. I mean, I remember when I was playing with my first WordPress site, and even to make really small changes with navigation or with menus, I had to go in and make changes to the PHP code, and none of that was protected.</p>\n\n\n\n<p>[00:11:31] <strong>Josepha:</strong> You&#8217;re like, &#8220;This is free-range me out here.&#8221;</p>\n\n\n\n<p>[00:11:34] <strong>Mike:</strong> I love, absolutely. I love that is just no longer the case anymore and it&#8217;s super easy to go in and play with a theme and make changes without worrying about any of that. And, I mean, I may be a developer, but that&#8217;s the way I would prefer. That&#8217;s the way I go in and edit my sites now too.</p>\n\n\n\n<p>If I wanna mess with a theme, go in, and it was the Customizer and now it&#8217;s the Site Editor, and it&#8217;s great.</p>\n\n\n\n<p>[00:11:58] <strong>Josepha:</strong> Yeah, it&#8217;s a leap forward, I think, leap forward.</p>\n\n\n\n<p>So another thing that I ran into, I guess it&#8217;s two things that I ran into while I was wandering around in there recently, and it&#8217;s possible that I ran into these two things because I just personally love them the most, but the Footnotes block looks like it is potentially going to land.</p>\n\n\n\n<p>I have been so excited about this block for no reason. I have dreams about it. I wish that were not a true statement. I did recently have a dream about it. I dreamt that it didn&#8217;t land in the release, and that I went to talk to Ella about it and she was like, &#8220;Oh, yeah, publishers have given up on footnotes and they&#8217;re just doing end notes now, and so I decided not to ship it.&#8221; Like this is a dream I had.</p>\n\n\n\n<p>And so I&#8217;m a little worried, but tomorrow I&#8217;m gonna be like, &#8220;Hey, Ella, friend, what&#8217;s happening?&#8221; And she&#8217;s gonna be like, &#8220;Yeah, end notes are where it&#8217;s at.&#8221;</p>\n\n\n\n<p>And then the other block that I&#8217;m personally very excited about is what I like to call the &#8220;Spoilers block.&#8221; I know it is not &#8220;Spoilers&#8221;, it&#8217;s the called &#8220;Details,&#8221; but anytime I&#8217;ve ever used that after like early, early times in my career, early in my career, I used to call them accordions and I don&#8217;t know why, but now I call them &#8220;Spoiler blocks.&#8221; But I know it&#8217;s actually called the &#8220;Details block,&#8221; where you can put in a piece of information at the top, essentially a title, and then expand it to get more information in there.</p>\n\n\n\n<p>So are both of those actually gonna land or am I gonna be heartbroken?</p>\n\n\n\n<p>[00:13:24] <strong>Mike:</strong> As far as I&#8217;m aware, yes. I know that I haven&#8217;t checked recently on the latter, but I was just playing with the Footnotes block, and it&#8217;s really cool. I really like the interface. I think that it makes it really simple to add quick footnotes to, anywhere in the site, and everything feels very automated and simple.</p>\n\n\n\n<p>[00:13:46] <strong>Josepha:</strong> As someone who every, almost everything that I&#8217;ve ever written, I want to have an aside in it, which essentially just becomes a footnote. One of the weirdest parts about Gutenberg at first is that like, the asterisk way of doing it, where you just put one after the word and then put one at the start. The asterisk makes it into a list block, and for a long time you also couldn&#8217;t escape it, and so I had to do a lot of fancy footwork to get my footnotes to work for a while, and so I&#8217;m excited for that.</p>\n\n\n\n<p>[00:14:15] <strong>Mike:</strong> I think I had similar discouraging moments with lists and I was really encouraged by the way the footnotes select, and I&#8217;m sure there are other ways to do it too, but select, right-click, footnote, and they all automatically go to the bottom order, all of it. It&#8217;s a really smooth process.</p>\n\n\n\n<p>[00:14:31] <strong>Josepha:</strong> Yeah. I&#8217;m really excited about it. I know that like for the last two or three major releases, a bulk of what we&#8217;ve been offering to folks is like, design stuff, and we&#8217;re just like, &#8220;It&#8217;s a bunch of design things,&#8221; but this release actually has over 500 different tickets that were marked as features or enhancements that are going into it.</p>\n\n\n\n<p>And so, you and I have talked about seven things so far, but I also understand that there are literally 500 tickets or so that were marked as &#8220;feature&#8221; or &#8220;enhancement.&#8221; And so we are definitely not gonna catch everything that goes in there, but there is kind of a group of another group of enhancements to the design tools because of course this wraps up the bulk of phase two so that we can all move into the collaborative editing phase.</p>\n\n\n\n<p>And so like, do you have a sense for, like is this just mostly polish for those design and like image media management kinds of things? Or are there big features that are coming in those also?</p>\n\n\n\n<p>[00:15:29] <strong>Mike:</strong> My understanding is that it&#8217;s all of the above. I think that there are a lot of new features being added along with polish to those features. And I think the neatest thing is that there are also a lot of enhancements that are focused on bringing all of those things together and making it feel like more of a connected experience. And so I think that&#8217;s my favorite part so far in testing that I&#8217;ve been doing of, the many, as you mentioned, so many additional new features that, that we&#8217;re added this time. And, I have a huge amount of respect for, you know, everyone that works, for the huge amount of folks that work on it across the project.</p>\n\n\n\n<p>[00:16:07] <strong>Josepha:</strong> Yeah. Yeah, you&#8217;ve given a couple of answers where you were like, &#8220;I wasn&#8217;t personally involved in that,&#8221; but on the one hand, I was like, &#8220;Everyone knows that we&#8217;re not all personally involved in it,&#8221; but on the other hand, not everybody knows how many people touch all of these tickets and features and bugs and tests as we get them ready to be put into the release.</p>\n\n\n\n<p>Last year, I was super worried that like, post active fear of Covid, and now everyone just like deciding that they&#8217;ve done their best and they&#8217;re going back out there. Like I was really worried that everyone was gonna be having so much fun out of the house, that they would stop contributing.</p>\n\n\n\n<p>[00:16:43] <strong>Mike: </strong><em>( laughs )</em></p>\n\n\n\n<p>[00:16:44] <strong>Josepha:</strong> I know, but we actually had one of our most active years for contributors last year, which means that especially for the releases that are coming this year, the people who worked all the way through last year, like almost 2000, I think, contributors, just to code, that&#8217;s not even like the contributors who worked on reigniting the community and putting together events, all of those things like all of the other things that we do.</p>\n\n\n\n<p>It&#8217;s, it is remarkable to me that when we look at any feature it is definitely been looked at or worked on, or at least passed through desks of easily a hundred people, even for small little things. And I just love that, the depth of the work we do.</p>\n\n\n\n<p>[00:17:29] <strong>Mike:</strong> Absolutely. Same. I remember wondering about that too, about your same sort of concerns. And it&#8217;s been really great to be a part of the community as it&#8217;s essentially, as it&#8217;s grown together again, I think is maybe the best way I can think of to say it. That&#8217;s been quite wonderful.</p>\n\n\n\n<p>[00:17:46] <strong>Josepha:</strong> Yeah, absolutely. Mike, this has been an absolutely delightful conversation. Is there anything you would like to leave us with before we move on to our small list of big things today?</p>\n\n\n\n<p>[00:17:58] <strong>Mike:</strong> The release candidate for 6.3 comes out tomorrow, and what I would love the most is if anyone in interested in testing, anyone, whether it&#8217;s testing exactly like this sort of testing that you were just talking about, with loading the RC and clicking around and seeing what works the best and what doesn&#8217;t work and what feels good and what doesn&#8217;t, or if it&#8217;s testing, if you&#8217;re like a plugin or a theme developer, testing with those things to see how things work and looking for backwards compatibility breaks that are unexpected so we can fix them before release.</p>\n\n\n\n<p>If you work at a hosting company or you make sites for folks, helping test that to see that it works really well on your platforms for folks that you work with. I think all of those would be super helpful, and there are testing instructions that can be found on the release candidate announcement page.</p>\n\n\n\n<p>[00:18:43] <strong>Josepha:</strong> Perfect. Wonderful. Mike, thank you so much for joining me today.</p>\n\n\n\n<p>[00:18:47] <strong>Mike:</strong> Thank you so much. I&#8217;ve really appreciated the time.</p>\n\n\n\n<p><em>( Musical interlude )</em></p>\n\n\n\n<p>[00:18:49] <strong>Josepha:</strong> That brings us now to our small list of big things. It&#8217;s actually kind of a big list of big things today. So first on the list is that WordCamp US has a Contributor Day and we need your help. So the WordCamp US Contributor Team has contacted all of the team reps asking for help with a new approach to organizing this year&#8217;s Contributor Day.</p>\n\n\n\n<p>The hope is to make the initial steps to contribution easier. And so they&#8217;re asking teams who will be present to help participate with that process. I will have a link in the show notes to the post that has more information.</p>\n\n\n\n<p>Also second thing related also to WordCamp US is that I would like to put out a call for art and music, especially that is related to open source and the freedoms that it brings. So one of the things that makes WordPress so fantastic in the world is not only that like we&#8217;re creating opportunities for folks, we&#8217;re offering economic, and I don&#8217;t know, philosophical freedoms to people, but we frequently do think about that in the vein of, you know, commerce and work and the economy, and we rarely think about it in the obviously related subset of arts and music. And so I also would like to put out a call for any open source related arts or poetry or music that you all have created.</p>\n\n\n\n<p>I would love to be able to display some of that at WordCamp US this year. I don&#8217;t think I have a link quite yet for a call for that, but as soon as I do, I&#8217;ll send it out on social media and other places.</p>\n\n\n\n<p>The third thing on our small list of big things is that, as Mike mentioned, tomorrow is the RC1 release date for WordPress 6. 3, and you can help us to test that.</p>\n\n\n\n<p>It&#8217;s always good for us to test any release as it&#8217;s working its way through the process, but certainly by the time it gets to RC, that&#8217;s when we are pretty sure it&#8217;s going to be as stable as possible. We&#8217;ve done some soft string freezes and feature freezes-ish. And so that&#8217;s about as stable as it&#8217;s going to get. And so I encourage everyone to get out and test that as much as possible. And in all the ways that Mike shared.</p>\n\n\n\n<p>Item number four, we are also reaching a milestone. So, a couple weeks ago, we reached the one year milestone for the start of the Meetup Reactivation Project.</p>\n\n\n\n<p>We have about 50% of our Meetup groups reactivated. If you are listening to this and you are a Meetup organizer and you haven&#8217;t heard from anyone from WordCamp Central or the community team, I&#8217;m going to put a link to the notes, or rather, a link to the post in the notes so that you can also learn more about that.</p>\n\n\n\n<p>You don&#8217;t have to hear from us in order to get your meetup group going again. But, if you are interested to know what has gone into that process, or always just want to know what&#8217;s going on in the community side of things, that&#8217;s a good place to start. So there will be a link to that in the show notes as well.</p>\n\n\n\n<p>Number five, WordPress event organizers in general, but also anyone. So there are two different events coming up on Thursday, on July 20th.</p>\n\n\n\n<p>First, there is the WP Diversity Workshop. This is added workshop for us to help promote the ideas of building diverse and inclusive WordPress events. And so, this is not necessarily one of those events for people who want to increase their skills in speaking so that they are able to, to speak confidently at a WordPress event. These are for people who are organizing WordPress events and want to make them more inclusive and more diverse from the start. I encourage any organizer to go to it, regardless of whether you&#8217;re doing WordPress events or not, but certainly for WordPress events that is something that we care about and want to have included in our entire event series.</p>\n\n\n\n<p>The other thing that&#8217;s happening on Thursday, because like I said, two things happening on Thursday, is that we have a WordPress 6. 3 live product demo. We&#8217;ve been doing these for the last few releases, and you get a couple of people from either the release squad, or like folks who do that kind of developer relations work in WordPress, who sit down and just do a general click-through, a general run through, a public demo of what we expect to land in the release.</p>\n\n\n\n<p>And so that also is on Thursday. I will also have a link for you in the show notes. If you are listening to this not on WordPress.org and you don&#8217;t know where the show notes are, don&#8217;t worry. The show notes are on WordPress.org. You go to WordPress.org/news/podcast and in the transcript there are show notes that have links to all of these things.</p>\n\n\n\n<p>And that, my friends, is your big, small list of big things. Thank you for tuning in today for the WordPress Briefing. Thank you again for my guest, Mike&#8217;s, time. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\n\n\n<p><em>( Outtro music )</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15398\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:63:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Designed with WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2023/07/designed-with-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Jul 2023 22:33:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"6.3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:9:\"Gutenberg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15401\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:342:\"The Gutenberg project has aimed to revolutionize how we manage web content as much as Johannes Gutenberg did the printed word. The project&#8217;s roadmap is comprised of four unique phases: With the upcoming release of WordPress 6.3, Phase 2 of the Gutenberg project is coming to a close; a journey worth celebrating. This video is [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4271:\"\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"812\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/patterns-alt-b-dark.png?resize=1024%2C812&#038;ssl=1\" alt=\"\" class=\"wp-image-15421\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/07/patterns-alt-b-dark.png?resize=1024%2C812&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/07/patterns-alt-b-dark.png?resize=300%2C238&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/07/patterns-alt-b-dark.png?resize=768%2C609&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/07/patterns-alt-b-dark.png?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The <a href=\"https://wordpress.org/gutenberg/\">Gutenberg</a> project has aimed to revolutionize how we manage web content as much as <a href=\"https://en.wikipedia.org/wiki/Johannes_Gutenberg\">Johannes Gutenberg</a> did the printed word. The project&#8217;s <a href=\"https://wordpress.org/about/roadmap/\">roadmap</a> is comprised of four unique phases:</p>\n\n\n\n<ol>\n<li>Easier Editing — Already available in WordPress, with ongoing improvements</li>\n\n\n\n<li>Customization — Full site editing, block patterns, block directory, block themes</li>\n\n\n\n<li>Collaboration — A more intuitive way to co-author content</li>\n\n\n\n<li>Multilingual — Core implementation for Multilingual sites</li>\n</ol>\n\n\n\n<p>With the upcoming release of WordPress 6.3, Phase 2 of the Gutenberg project is coming to a close; a journey worth celebrating.</p>\n\n\n\n<p>This video is an ode to Gutenberg&#8217;s editing and customization phases, celebrating the new design tools and the possibilities they create. The piece encapsulates the exciting steps made in the past that propel the vibrant future of WordPress.</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n<iframe loading=\"lazy\" class=\"youtube-player\" width=\"600\" height=\"338\" src=\"https://www.youtube.com/embed/FcTLMTyD2DU?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en-US&#038;autohide=2&#038;wmode=transparent\" allowfullscreen=\"true\" style=\"border:0;\" sandbox=\"allow-scripts allow-same-origin allow-popups allow-presentation\"></iframe>\n</div></figure>\n\n\n\n<p>Everything showcased in the video is built entirely with the WordPress Editor, using currently available blocks, patterns, and themes. This new era has opened the ability for the design community to contribute to the project directly without depending on developers to translate their ideas into designs. Consider this an invitation for designers to join a new generation that embraces the diverse and expressive capabilities of WordPress.</p>\n\n\n\n<p>The work that goes into Gutenberg is a powerful testament to the collaboration of coders, developers, and designers in our community. United, we strive to build WordPress into a realm of significance and lasting impact.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Video credits</h2>\n\n\n\n<p><strong>Video credits:</strong> <a href=\"https://profiles.wordpress.org/tinobarreiro/\">Tino Barreiro</a>, <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a>, <a href=\"https://profiles.wordpress.org/iamtakashi/\">Takashi Irie</a>, <a href=\"https://profiles.wordpress.org/iamarinoh/\">Henrique Lamarino</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <a href=\"https://profiles.wordpress.org/pablohoneyhoney/\">Pablo Honey</a>, <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a>, and Holographik. </p>\n\n\n\n<p><i>Thank you to the post authors </i><a style=\"font-style: italic\" href=\"https://profiles.wordpress.org/tinobarreiro/\">Tino Barreiro</a><i>, </i><a style=\"font-style: italic\" href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a><i>, </i><a style=\"font-style: italic\" href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a><i>, </i><a style=\"font-style: italic\" href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, <em>and <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"15401\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 09 Aug 2023 16:48:18 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Tue, 08 Aug 2023 23:38:54 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 6\";}}s:5:\"build\";s:14:\"20230710121827\";}','no'),(524,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1691642898','no'),(525,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1691599698','no'),(526,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1691642900','no');
INSERT INTO `wp_options` VALUES (527,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Akismet: How to Disable Comments in WordPress (and When Not to)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=160334\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://akismet.com/blog/how-to-disable-comments-in-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20675:\"<p>The heart of an online presence lies in its engaging community, and what better way to foster such engagement than allowing users to post comments? Yet, there are moments when it might be necessary to hit the &#8220;off&#8221; switch. If your comments section gets flooded with spam, your impulse may be to automatically close comments before things get too messy.&nbsp;</p>\n\n\n\n<p>But you don&#8217;t necessarily need to do that. Today, we&#8217;ll delve into how to disable comments in WordPress and also discuss situations where this isn&#8217;t the best decision. And we&#8217;ll explore solutions to common concerns, such as managing spam, using powerful tools like Akismet.</p>\n\n\n\n<p>Let&#8217;s get right to it.</p>\n\n\n\n<span id=\"more-160334\"></span>\n\n\n\n<h2 class=\"wp-block-heading\">Turning off comments to stop spam? Install Akismet instead</h2>\n\n\n\n<p>Before you disable comments altogether, consider what’s really bothering you.</p>\n\n\n\n<p>Is it the <a href=\"https://akismet.com/blog/how-to-stop-comment-spam-in-wordpress/\">flood of spam</a> making your management duties unbearable? Or, are trolls wreaking havoc on your site&#8217;s overall positive vibes? It&#8217;s natural to feel overwhelmed and think of disabling comments as the quick fix. But there’s a better method you can employ.</p>\n\n\n\n<p>Enter <a href=\"https://akismet.com/\">Akismet</a>, your staunch ally in the battle against spam. This robust tool packs quite a punch when it comes to filtering out spammy content, letting you revel in the genuine, quality interaction with your users.</p>\n\n\n\n<img width=\"900\" height=\"526\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image2.jpg\" alt=\"Akismet homepage with the text, \" />\n\n\n\n<p>A blend of simplicity and power, Akismet is astoundingly easy to use. Once installed and set up, it works quietly behind the scenes of your entire WordPress site, sifting through incoming comments, and sweeping away spam. All you&#8217;re left with are the comments that truly matter. You&#8217;ll see the difference immediately and wonder how you ever managed without it.</p>\n\n\n\n<p>Here are a few features that make Akismet your hero:</p>\n\n\n\n<ul>\n<li><strong>Automatic spam detection</strong>: It checks and filters every comment, so you don&#8217;t have to spend your precious time discerning real comments from spam.</li>\n\n\n\n<li><strong>A flexible discard feature</strong>: You have complete control. You can choose to discard the worst and most pervasive spam, so you&#8217;ll never have to see it.</li>\n\n\n\n<li><strong>A visible comment status history</strong>: For each comment, Akismet provides a status history, so you can understand where the spam was caught, cleared, or missed.</li>\n</ul>\n\n\n\n<p>This is all fine and well, but maybe it seems like too much trouble. Couldn&#8217;t you just disable comments across the board and be done with it? Certainly, you could. But there are tangible <a href=\"https://akismet.com/blog/wordpress-pros-and-cons-of-enabling-comments/\">benefits to keeping comments turned on</a> in WordPress.&nbsp;</p>\n\n\n\n<p>For instance, comments can:</p>\n\n\n\n<ul>\n<li>Boost community engagement</li>\n\n\n\n<li>Encourage repeat visitors</li>\n\n\n\n<li>Provide a way to get quick feedback</li>\n\n\n\n<li>Improve on-page SEO</li>\n</ul>\n\n\n\n<p>But if left to run amuck, an overabundance of spam comments can leave a sour taste in visitors&#8217; mouths. An unmoderated comment section can:</p>\n\n\n\n<ul>\n<li>Look unprofessional</li>\n\n\n\n<li>Affect site security</li>\n\n\n\n<li>Attract more spam comments</li>\n\n\n\n<li>Create more work for admins</li>\n</ul>\n\n\n\n<p>All that being said, before you decide to disable comments in WordPress for future posts entirely, give Akismet a shot. It&#8217;s the solution that preserves your community engagement while keeping your WordPress website clean and spam free.</p>\n\n\n\n<p>Still, there might be situations where you want to learn how to turn off comments in WordPress. Perhaps you&#8217;ve decided to repurpose your blog as a purely informational site, or maybe you have a specific WordPress post that doesn’t require engagement. Whatever your reasons, we&#8217;ll walk you through the process next.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Still want to disable WordPress comments? Here are four ways to do so:</h2>\n\n\n\n<p>While we advocate for keeping the <a href=\"https://akismet.com/blog/wordpress-comment-system/\">comments section</a> activated, there are times when you may feel it necessary to hit that &#8220;disable&#8221; button. If you&#8217;ve made up your mind, here are four ways to turn off comments in WordPress:</p>\n\n\n\n<img width=\"1999\" height=\"1333\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image11.jpg\" alt=\"man in a maroon sweater looking at a computer screen\" class=\"wp-image-160337\" />\n\n\n\n<h3 class=\"wp-block-heading\">1. Turn off comments in your WordPress settings</h3>\n\n\n\n<p>One way to disable comments site-wide is through the WordPress Discussion settings.</p>\n\n\n\n<p>Here&#8217;s how you do it:</p>\n\n\n\n<ol>\n<li><a href=\"https://jetpack.com/blog/wordpress-admin-dashboard/\">From your WordPress Dashboard</a>, navigate to <strong>Settings → Discussion</strong>.</li>\n\n\n\n<li>In the <strong>Default post settings</strong> section, uncheck the box that says <strong>Allow people to comment on new posts</strong>.</li>\n\n\n\n<li>Scroll down and click <strong>Save Changes</strong>.</li>\n</ol>\n\n\n\n<img width=\"900\" height=\"190\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image9.jpg\" alt=\"discussion settings in WordPress\" class=\"wp-image-160338\" />\n\n\n\n<p>Remember, this setting only applies to future posts. Your old posts will still have comments enabled unless you disable them individually or in bulk, which brings us to our next point.</p>\n\n\n\n<h3 class=\"wp-block-heading\">2. Disable comments on a specific post</h3>\n\n\n\n<p>Maybe you just want to turn off comments for one or a few specific posts. That&#8217;s easy to accomplish as well:</p>\n\n\n\n<ol>\n<li>From the WordPress dashboard, navigate to <strong>Posts</strong> or <strong>Pages</strong> and find the post or page where you want to disable comments.</li>\n\n\n\n<li>Click <strong>Edit</strong> to open the post or page.</li>\n\n\n\n<li>On the right-hand side of the screen, in the <strong>Post</strong> tab, scroll down to <strong>Discussion</strong>.</li>\n\n\n\n<li>Uncheck <strong>Allow comments</strong>.</li>\n\n\n\n<li><strong>Update</strong> or<strong> Publish</strong> the post to save your changes.</li>\n</ol>\n\n\n\n<img width=\"900\" height=\"290\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image6.jpg\" alt=\"comment settings on an individual blog post\" class=\"wp-image-160339\" />\n\n\n\n<p>Or, you can do this from the Post or Pages list. Instead of clicking on the post to open the Block Editor, click <strong>Quick Edit</strong>, uncheck the box that says <strong>Allow Comments.</strong> then click <strong>Save</strong>.</p>\n\n\n\n<img width=\"900\" height=\"379\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image8.jpg\" alt=\"turning off comments for a post\" class=\"wp-image-160340\" />\n\n\n\n<h3 class=\"wp-block-heading\">3. Disable comments in bulk on a group of posts</h3>\n\n\n\n<p>If you need to disable comments on multiple posts, you can do so quickly with the bulk edit feature:</p>\n\n\n\n<ol>\n<li>Go to <strong>Posts</strong> in your WordPress dashboard.</li>\n\n\n\n<li>Check the boxes next to the posts where you want to disable WordPress comments.</li>\n\n\n\n<li>From the <strong>Bulk Actions</strong> drop-down at the top, choose <strong>Edit,</strong> then click <strong>Apply</strong>.</li>\n\n\n\n<li>In the <strong>Bulk Edit</strong> box that appears, find <strong>Comments</strong> and select<strong> Do not allow</strong>.</li>\n\n\n\n<li>Click on the <strong>Update</strong> button to save your changes.</li>\n</ol>\n\n\n\n<img width=\"900\" height=\"426\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image7.jpg\" alt=\"turning off comments on posts in bulk\" class=\"wp-image-160342\" />\n\n\n\n<h3 class=\"wp-block-heading\">4. Turn off comments using custom code</h3>\n\n\n\n<p>If you feel comfortable tinkering with your site&#8217;s code, you can turn off comments by adding a few lines to your theme&#8217;s <em>single.php</em> file. This is the file that controls specifications for your site&#8217;s blog posts.</p>\n\n\n\n<p><em>Note: Before making any changes to your site&#8217;s code, always make a backup. Accidents can happen, and you don&#8217;t want to lose your site&#8217;s data. </em><a href=\"https://jetpack.com/upgrade/backup/\"><em>Jetpack VaultPress Backup</em></a><em> is the ideal solution for this purpose. Finally, it’s important to use a child theme in a staging environment before pushing your changes to your live site.</em></p>\n\n\n\n<p>Once you&#8217;re ready, locate your <em>single.php</em> file and open it in an HTML editor. Find the follow line of code in the file:</p>\n\n\n\n<pre class=\"wp-block-code\"><code><em>&lt;?php comments_template(); ?&gt;</em></code></pre>\n\n\n\n<p>Highlight this bit of code and replace it with the following:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;!-- Begin Comment\n\n&lt;?php comments_template(); ?&gt;\n\nEnd Comment --&gt;</code></pre>\n\n\n\n<p>This code will turn off comments for all the posts on your WordPress site (and will even remove existing comments). By using this method, you’re &#8220;commenting out&#8221; the line of code that enables comments on your WordPress site. This turns that line of code into a “note” (such as ones you might make for other developers to reference if they’re troubleshooting your work) instead of a line that would actually be executed. </p>\n\n\n\n<p>Disabling comments in this way is a better solution than simply removing the line of code entirely because you can more easily re-enable comments again in the future.&nbsp;</p>\n\n\n\n<p>You can repeat this process for additional post types, including your site&#8217;s pages.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Alternative solution: Keep comments enabled, but block spam</h3>\n\n\n\n<img width=\"1024\" height=\"930\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image5.png\" alt=\"\" class=\"wp-image-160343\" />\n\n\n\n<p>If you feel hesitant about taking the last-ditch approach to disable comments in WordPress altogether, there <em>is </em>a better solution. Consider keeping comments enabled but blocking spam. It&#8217;s the middle-ground solution that lets you foster community engagement while keeping spam at bay.</p>\n\n\n\n<p>Akismet is your go-to tool for this purpose. Once enabled, it screens every comment and filters out those that look like spam. You&#8217;re left with genuine interaction without the headache of moderating every single comment manually.</p>\n\n\n\n<p>To get started with Akismet, you&#8217;ll first need to install and activate the Akismet plugin. Here&#8217;s a step-by-step guide to get you up and running:</p>\n\n\n\n<ol>\n<li>From your WordPress dashboard, navigate to <strong>Plugins</strong> and then click on <strong>Add New</strong>.</li>\n\n\n\n<li>In the search box, type “Akismet”. It should be the first result that appears.</li>\n\n\n\n<li>Click on the <strong>Install Now</strong> button and then <strong>Activate</strong>.</li>\n</ol>\n\n\n\n<p>Now that the Akismet plugin is activated, you&#8217;ll need to set it up:</p>\n\n\n\n<ol>\n<li>Go to <strong>Settings → Akismet Anti-Spam</strong>.</li>\n\n\n\n<li>You&#8217;ll be asked for your <strong>Akismet API key</strong>. If you don&#8217;t have one, go to the Akismet website, where you can sign up for an account and create a key.</li>\n\n\n\n<li>Once you&#8217;ve got your key, enter it in the API Key field, then click <strong>Save Changes</strong>.</li>\n\n\n\n<li>Akismet is now connected to your WordPress site.</li>\n</ol>\n\n\n\n<img width=\"900\" height=\"510\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image12.jpg\" alt=\"settings for Akismet\" class=\"wp-image-160344\" />\n\n\n\n<p>That&#8217;s it! Akismet is now set up and ready to start blocking spam.</p>\n\n\n\n<p>You can view stats and see how many spam comments Akismet has blocked by visiting the <strong>Akismet Stats</strong> page in your WordPress dashboard.</p>\n\n\n\n<p>Remember, enabling comments doesn&#8217;t have to mean opening the floodgates to spam. With Akismet on guard, you can enjoy the best of both worlds: an engaged community and a spam-free commenting experience.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to delete past comments in bulk</h2>\n\n\n\n<p>Whether you&#8217;ve decided to disable comments or simply need to clear out old, irrelevant chatter on existing published posts, WordPress provides easy ways to delete all the comments from the past.</p>\n\n\n\n<img width=\"1999\" height=\"1333\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image1.jpg\" alt=\"crumpled up paper by a trash can\" class=\"wp-image-160345\" />\n\n\n\n<p>Let&#8217;s start with handling this task in bulk:</p>\n\n\n\n<ol>\n<li><a href=\"https://jetpack.com/blog/how-to-back-up-your-wordpress-site/\">Create a backup of your WordPress site</a> before making any major changes.</li>\n\n\n\n<li>Navigate to the<strong> Comments </strong>section in your WordPress dashboard.</li>\n\n\n\n<li>By default, all comments are displayed. You can filter them by clicking on the All, Pending, Approved, Spam, or Trash links at the top.</li>\n\n\n\n<li>Once you&#8217;ve chosen the comments you wish to delete, check the box next to Author at the top to select all comments on the page. Alternatively, you can manually select individual comments.</li>\n\n\n\n<li>From the <strong>Bulk Actions </strong>dropdown menu, choose <strong>Move to Trash</strong> and then click <strong>Apply</strong>.</li>\n</ol>\n\n\n\n<p>This will send all selected comments to the trash. If you want to permanently delete these comments:</p>\n\n\n\n<ol>\n<li>Click on the <strong>Trash</strong> link at the top.</li>\n\n\n\n<li>Click the<strong> Empty Trash </strong>button.</li>\n</ol>\n\n\n\n<p>And that’s it. Your selected comments are gone for good.</p>\n\n\n\n<p>The only problem here is that, by default, you can only bulk delete 20 comments at a time. To get around this, click <strong>Screen Options</strong> at the top of the Comments page. Beside “Number of items per page,” change “20” to whatever you’d like and click <strong>Apply.</strong></p>\n\n\n\n<img width=\"958\" height=\"508\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image4.png\" alt=\"selecting the number of posts per page\" class=\"wp-image-160346\" />\n\n\n\n<h2 class=\"wp-block-heading\">How to delete past comments on individual posts</h2>\n\n\n\n<p>If you&#8217;re only interested in pruning comments from specific existing posts, WordPress offers an efficient way to do so. Here&#8217;s how:</p>\n\n\n\n<ol>\n<li>Navigate to <strong>Posts</strong> in your WordPress dashboard.</li>\n\n\n\n<li>Find the post from which you want to remove comments and, in the Comments column, click the number of published comments for that post.</li>\n\n\n\n<li>You&#8217;ll now see a list of all comments for that post. Hover over the comment you want to delete to reveal a menu and click <strong>Trash</strong>.</li>\n\n\n\n<li>If you want to permanently delete this comment, click on the <strong>Trash</strong> link at the top to view all trashed comments. Hover over the comment you just trashed, and click <strong>Delete Permanently</strong>.</li>\n</ol>\n\n\n\n<p>That&#8217;s it! You&#8217;ve successfully learned how to manage and control the comments section on your WordPress site. While it might be tempting to disable comments during tough times, tools like Akismet can make the task a lot easier, ensuring your site remains a place for valuable discussion.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Frequently asked questions</h2>\n\n\n\n<p>Having shed light on how to disable comments in WordPress, let&#8217;s now address some frequently asked questions.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Why use Akismet instead of disabling comments?</h3>\n\n\n\n<p>Akismet is a powerful spam filtering service that can significantly reduce the time and effort you spend moderating comments. By using Akismet, you can maintain an open forum for your users to engage and interact without the headache of dealing with comment spam.&nbsp;</p>\n\n\n\n<p>This helps foster a sense of community around your content and can also improve your site&#8217;s SEO by encouraging user-generated content. In contrast, disabling comments shuts down these possibilities.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What are other advantages of enabling comments?</h3>\n\n\n\n<p>Enabling comments on your site creates a two-way communication channel between you and your visitors. This can lead to insightful discussions, provide feedback, and generate new ideas for content. Comments also increase the time people spend on your site, which can boost your SEO.</p>\n\n\n\n<img width=\"1999\" height=\"1125\" src=\"https://akismet455732288.files.wordpress.com/2023/07/image10.jpg\" alt=\"black coffee mug next to a laptop\" class=\"wp-image-160347\" />\n\n\n\n<h3 class=\"wp-block-heading\">What should I do if comments are disabled but still showing?</h3>\n\n\n\n<p>If you chose to disable comments in WordPress, but comments are still appearing on your site, it might be that they were posted before you disabled comments. In such a case, you&#8217;ll need to manually delete these comments. You can refer to our sections on how to delete comments in bulk or on individual posts for step-by-step instructions.</p>\n\n\n\n<h3 class=\"wp-block-heading\">How can I disable comments on media files?</h3>\n\n\n\n<p>WordPress treats media files (images, videos, etc.) as separate posts, which means they can have their own comment sections. To disable comments on media files, you&#8217;ll need to do the following:</p>\n\n\n\n<ol>\n<li>Go to <strong>Media → Library</strong> in your WordPress dashboard.</li>\n\n\n\n<li>Click on the media file you want to disable comments for.</li>\n\n\n\n<li>On the right hand side of the screen click <strong>Edit more details</strong>.</li>\n\n\n\n<li>Under the <strong>Discussion</strong> section, uncheck the box that says <strong>Allow comments</strong>. If you don’t see this option, click <strong>Screen Options </strong>at the top and check the box next to <strong>Comments</strong>.&nbsp;</li>\n\n\n\n<li>Click <strong>Update</strong> to save changes.</li>\n</ol>\n\n\n\n<p>Repeat this process for each media file you want to disable comments for.</p>\n\n\n\n<h3 class=\"wp-block-heading\">How can I remove the “Comments Are Closed” message?</h3>\n\n\n\n<p>The &#8220;Comments Are Closed&#8221; message typically appears when comments have been disabled on a post that had comments previously published. One way to remove this is by adding this CSS to your site.</p>\n\n\n\n<p>In your dashboard, go to <strong>Appearance → Additional CSS.</strong> Add this line of code to the bottom:</p>\n\n\n\n<pre class=\"wp-block-code\"><code>.nocomments {\n\n&nbsp;&nbsp;&nbsp;&nbsp;display: none;\n\n}</code></pre>\n\n\n\n<p>Then, click <strong>Publish.</strong>&nbsp;</p>\n\n\n\n<p>This should work for the majority of themes. If, however, your theme uses a different CSS class for the “Comments Are Closed” message, you’ll need to replace “.nocomments” with the correct line.</p>\n\n\n\n<h3 class=\"wp-block-heading\">How can I remove the comment counter on my blog?</h3>\n\n\n\n<p>The comment counter is a feature that comes with many WordPress themes. To remove it, you&#8217;ll need to edit your theme&#8217;s files. Again, back up your site before making any changes.</p>\n\n\n\n<ol>\n<li>Go to <strong>Appearance → Additional CSS</strong>.</li>\n\n\n\n<li>Next, you need to hide the<em> .comments_count class</em>. To do this, paste this code snippet at the bottom:</li>\n</ol>\n\n\n\n<pre class=\"wp-block-code\"><code>.comments-count {\n\n&nbsp;display: none;\n\n}</code></pre>\n\n\n\n<ol start=\"3\">\n<li>Click <strong>Publish</strong> to save your changes.</li>\n</ol>\n\n\n\n<h2 class=\"wp-block-heading\">Akismet: AI-powered anti-spam for WordPress comments and forms</h2>\n\n\n\n<p>Comments form a vibrant part of any blog or website, sparking discussions, fostering community, and generating valuable user engagement. However, managing spam can turn this asset into a hassle. That&#8217;s why Akismet is such a valuable plugin — it can transform the chore of comment moderation into an automated process.</p>\n\n\n\n<p>Harnessing the power of AI, Akismet helps keep your comments section clean, filtering out spam and allowing genuine interactions to shine. While disabling comments might seem like a tempting quick fix, consider this alternative: a world where your users can freely submit comments to share their thoughts, ideas, and appreciation without you having to worry about an onslaught of spam.</p>\n\n\n\n<p><a href=\"https://akismet.com/pricing/\">Get started with Akismet</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Aug 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Kathryn Marr\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"WPTavern: WordPress 6.3 “Lionel” Introduces Command Palette, Expands Pattern Management and Design Tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147591\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://wptavern.com/wordpress-6-3-lionel-introduces-command-palette-expands-pattern-management-and-design-tools\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8466:\"<img width=\"1508\" height=\"1124\" />image credit: <a href=\"https://garystockbridge617.getarchive.net/amp/media/lionel-hamptonnovember-1956-a54db8\">Lionel Hampton.November 1956. Örebro, Sverive</a>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/08/lionel/\">WordPress 6.3</a> “Lionel” was released today, named for <a href=\"https://en.wikipedia.org/wiki/Lionel_Hampton\">Lionel Hampton</a>, an American jazz vibraphonist, pianist, percussionist, and bandleader.</p>\n\n\n\n<p>As the last release in Phase 2 of the Gutenberg project, many updates in WordPress 6.3  are targeted at polishing up customization features and the UI that supports them. </p>\n\n\n\n<p>Content, templates, and patterns can now be <a href=\"https://github.com/WordPress/gutenberg/issues/44461\">edited together</a>, without the user having to leave the Site Editor. This streamlines the workflow across templates and content, making it easier to build out a website with live previews. Users can now <a href=\"https://github.com/WordPress/gutenberg/pull/50565\">create new pages</a> and <a href=\"https://github.com/WordPress/gutenberg/pull/50565\">view page details in the sidebar</a>, an experience that is very similar to editing a page in the block editor except that it keeps the process inside the flow of design editing.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\nvideo credit:&nbsp;<a href=\"https://make.wordpress.org/core/2023/06/14/whats-new-in-gutenberg-16-0-14-june/\">Gutenberg 16.0 release post</a>\n\n\n\n<h3 class=\"wp-block-heading\">Pattern Management Expands to Include Creating and Syncing Patterns</h3>\n\n\n\n<p>Pattern management was a major focus of the 6.3 release. Users can now arrange blocks to create their own patterns and save them to a library where they can be searched and edited. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1600\" height=\"922\" />Changes to Patterns –&nbsp;<a href=\"https://make.wordpress.org/core/2023/07/14/whats-new-in-gutenberg-16-2-12-july/\">Gutenberg 16.2 release post</a>\n\n\n\n<p>Reusable blocks have been <a href=\"https://wptavern.com/reusable-blocks-renamed-to-patterns-with-synced-and-non-synced-options\">renamed to synced patterns</a> but still function the same way. They can be created and edited in the block editor and then inserted into posts or pages with the edits synced. Block patterns, once inserted, can be edited and are not synced across other instances. </p>\n\n\n\n<p>The difference between synced and non-synced patterns is shown in the&nbsp;<a href=\"https://github.com/WordPress/gutenberg/pull/51954\">sync status details section</a>&nbsp;within the pattern sidebar navigation screen. <a href=\"https://github.com/WordPress/gutenberg/pull/51990\">A new lock icon</a>&nbsp;designates theme patterns as unable to be edited or modified.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"874\" height=\"577\" />image credit:&nbsp;<a href=\"https://github.com/WordPress/gutenberg/pull/51990\">Gutenberg PR #51990</a>\n\n\n\n<h3 class=\"wp-block-heading\">New Command Palette Tool Enables Quick Search and Command Execution</h3>\n\n\n\n<p>WordPress 6.3 <a href=\"https://wptavern.com/wordpress-6-3-will-introduce-a-command-palette\">introduces a new Command Palette</a> that was designed to be an extensible quick search and command execution tool. Users can do things like navigate to a page or post, add new content or a template, and toggle UI elements and editor preferences, among other things. It can be activated by using keyboard shortcuts (⌘+k on Mac or Ctrl+k on Windows) or by clicking the sidebar search icon in Site View, or clicking the Title Bar.</p>\n\n\n\n<p>Contributors are considering <a href=\"https://github.com/WordPress/gutenberg/issues/53299\">adding support for WP-CLI commands</a> in future iterations. The Command Palette is <a href=\"https://github.com/WordPress/gutenberg/pull/51169\">launching with a public API</a> so developers can explore extending it to add their own commands.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"500\" height=\"500\" />image source: WordPress 6.3 About Page\n\n\n\n<h3 class=\"wp-block-heading\">WordPress&#8217; Design Tools Updated to Include More Customization Capabilities</h3>\n\n\n\n<p>This release significantly expands the capabilities of existing design tools to make it easier to customize the finer details. Users can now design their own caption styles through the Styles interface without writing any CSS. Duotone filters are now available to be managed in Styles for blocks that support them and there is an option to disable them entirely. The Cover block&#8217;s settings capabilities have been expanded to include text color, layout controls, and border options.</p>\n\n\n\n<p>A few other notable new features and improvements in WordPress 6.3 include the following: </p>\n\n\n\n<ul>\n<li>Style revisions in the Site Editor let users revert to previous versions of the design</li>\n\n\n\n<li>New Footnotes block automatically links annotations throughout the content</li>\n\n\n\n<li>New Details block allows users to easily show or hide content </li>\n\n\n\n<li>Preview block themes before activating</li>\n\n\n\n<li>Set aspect ratio on images</li>\n\n\n\n<li>Distraction-free mode now available in the Site Editor</li>\n\n\n\n<li>Revamped top toolbar</li>\n\n\n\n<li>Improvements to List View&#8217;s drag-and-drop functionality</li>\n\n\n\n<li>New modal for building templates with patterns</li>\n\n\n\n<li>Failed update safeguards</li>\n\n\n\n<li>Minimum supported version of PHP updated to 7.0.0</li>\n\n\n\n<li>50+ accessibility improvements for labeling, tab and arrow-key navigation, revised heading hierarchy, and new controls in the admin image editor </li>\n</ul>\n\n\n\n<p>This release also brings more than 170 performance improvements and is significantly faster than previous versions.</p>\n\n\n\n<p>&#8220;Based on the <a href=\"https://docs.google.com/spreadsheets/d/1UMBN8H9r5ad5NPb81N3cx1bfAvhVDnd2UKpVU1FVgjc/edit\">performance benchmarks conducted</a> for RC3, <strong>WordPress 6.3 loads 24% faster for block themes and 18% faster for classic themes</strong>, compared to WordPress 6.2, based on the <a href=\"https://web.dev/lcp/\">Largest Contentful Paint (LCP)</a> metric,&#8221; Google-sponsored contributor Felix Arntz said in a <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">summary</a> on the improvements. &#8220;For WordPress 6.2, those improvements amounted to 18% and 5% respectively, so it is fair to summarize that WordPress 6.3 is a major achievement in terms of performance. &#8220;</p>\n\n\n\n<p>The most notable performance gains came from the introduction of defer and async support for the Scripts API and fetchpriority support for images, along with optimization of the <code>emoji-loader.js</code> script.</p>\n\n\n\n<p>WordPress 6.3 is the result of the efforts of more than 650 contributors across 52 countries, with ~32% of them (205) being first-time contributors. </p>\n\n\n\n<p>After updating to WordPress 6.3, users may notice a new &#8220;Get Involved&#8221; tab on the About page, designed to help new contributors find their place in the WordPress project. This addition closes a 10-year old <a href=\"https://core.trac.wordpress.org/ticket/23348\">ticket</a> that suggested adding a “Contribute” tab to the About page. It features both code-based and no-code contribution opportunities with a link to a new <a href=\"https://make.wordpress.org/contribute/\">WordPress.org/contributor</a> page.  This page debuts a new interactive tool that helps visitors find contributor teams that might be a good fit for their interests and capabilities.</p>\n\n\n\n<p>&#8220;As the community looks to the future, all efforts turn to <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">6.4</a> and, subsequently, the transition into <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3</a>, which is expected to introduce powerful collaboration tools to the website creation and management experience,&#8221; WordPress 6.3 release lead Matías Ventura said.</p>\n\n\n\n<p>For more details on all the changes included under the hood in this release, check out the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-3/\">documentation for 6.3</a>, the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a>, and <a href=\"https://make.wordpress.org/core/tag/dev-notes+6-3/\">6.3-related developer notes</a>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 21:29:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WordPress.org blog: WordPress 6.3 “Lionel”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15718\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2023/08/lionel/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:64206:\"<img width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/6.3-Release-Edition-Main-Image.png?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-15794\" />\n\n\n\n<p>Say hello to WordPress 6.3 “Lionel,” named after <a href=\"https://en.wikipedia.org/wiki/Lionel_Hampton\">Lionel Hampton</a>, the celebrated American jazz artist. A prolific jazz vibraphonist, pianist, and percussionist, Hampton gained notoriety working in harmony with greats from <a href=\"https://en.wikipedia.org/wiki/Charles_Mingus\">Charles Mingus</a> to <a href=\"https://en.wikipedia.org/wiki/Quincy_Jones\">Quincy Jones</a> and as bandleader of the eponymous Lionel Hampton Orchestra. His artistry and charitable work have been recognized with a Grammy, a star on the Hollywood Walk of Fame, and the National Medal of Arts.</p>\n\n\n\n<p>Be sure to turn up the volume of the <a href=\"https://www.youtube.com/channel/UCpfWWFslWSapwL_q16AboSg/featured\">musical stylings</a> of Lionel Hampton as you discover all “Lionel” has to offer.</p>\n\n\n\n<p>With “Lionel” you can create beautiful and compelling websites more efficiently than ever. Whether you want to build an entire site without coding or are a developer looking to customize every detail, WordPress 6.3 has something to pique your interest. As you unpack and explore this latest release, you will discover updated functions and navigation designed to help you work and create with less effort, design tools that give you more control over layout, and added functionality enriching the site-building experience.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">&#8220;Lionel&#8221; marks a major chapter in the evolution of WordPress as a tool for expression. It’s the culmination of years of work from hundreds of contributors, bringing a more powerful and cohesive editing experience for crafting websites with blocks. It continues the quest of making web publishing approachable for everyone—so it’s also just a new beginning!</p>\n<cite>Matías Ventura, WordPress 6.3 Release Lead</cite></blockquote>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/wordpress-6.3.zip\">Download WordPress 6.3 &#8220;Lionel&#8221; today</a></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">What’s inside</h2>\n\n\n\n<p>This momentous release opens new possibilities for the creative expression of designers, creators, and builders. Powerful tools and refined controls give users confidence and allow them to easily manage their sites.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Do everything in the Site Editor</h3>\n\n\n\n<p>WordPress 6.3 brings your content, templates, and patterns together in the Site Editor for the first time. Add pages, browse style variations, create synced patterns, and enjoy fine-tuned control over navigation menus. Spend less time switching across different site areas—so you can focus on what matters most. Creation to completion, all in one place.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/site-editor-2.png?resize=1024%2C666&ssl=1\" alt=\"Image titled: \" /><em>Do everything in the Site Editor</em>\n\n\n\n<h3 class=\"wp-block-heading\">Preview Block themes</h3>\n\n\n\n<p>Experience block themes before you switch and preview the Site Editor, with options to customize directly before committing to a new theme.&nbsp;</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/previewing-themes.png?resize=1024%2C666&ssl=1\" alt=\"Image about previewing block themes titled Previewing Themes depicting \" /><em>Preview a new block theme before you switch and commit</em>\n\n\n\n<h3 class=\"wp-block-heading\">Create and sync patterns</h3>\n\n\n\n<p>Arrange blocks and save them to the ‘My Patterns’ section for use throughout your site. You can even specify whether to sync your patterns (previously referred to as “Reusable blocks”) so that one change applies to all parts of your site. Or, utilize patterns as a starting point with the ability to customize each instance.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/patterns.png?resize=1024%2C666&ssl=1\" alt=\"Image showing the new My Patterns section in the CMS.\" class=\"wp-image-15768\" /><em>My patterns: All your patterns in one place</em>\n\n\n\n<h3 class=\"wp-block-heading\">Work faster with the Command Palette</h3>\n\n\n\n<p>Switch to a specific template or open your editor preferences with a new tool that helps you quickly access expanded functionality. With simple keyboard shortcuts (⌘+k on Mac or Ctrl+k on Windows), clicking the sidebar search icon in Site View, or clicking the Title Bar, get where you need to go and do what you need to do in seconds.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/command-palette.png?resize=1024%2C666&ssl=1\" alt=\"Image depicting the new Command Palette\" class=\"wp-image-15763\" /><em>Get to know the new Command Palette </em>\n\n\n\n<h3 class=\"wp-block-heading\">Sharpen your designs with new tools</h3>\n\n\n\n<p>New design controls bring more versatility for fine-tuning, starting with the ability to customize your captions from the Styles interface without coding. You can manage your duotone filters in Styles for supported blocks and pick from the options provided by your theme or disable them entirely. The Cover block gets added settings for text color, layout controls, and border options, making this powerful block even more handy.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/design.png?resize=1024%2C666&ssl=1\" alt=\"Image representing the new design tools in the Site Editor\" class=\"wp-image-15764\" /><em>New design tools</em>\n\n\n\n<h3 class=\"wp-block-heading\">Track design changes with Style revisions</h3>\n\n\n\n<p>With a new audit trail, you can now see how your site looked at a specific time. Visualize these revisions in a timeline and access a one-click option to restore prior styles.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/revisions.png?resize=1024%2C666&ssl=1\" alt=\"Image titled \" /><em>Style revisions: See your style revision history </em>\n\n\n\n<h3 class=\"wp-block-heading\">Annotate with the Footnotes block</h3>\n\n\n\n<p>Footnotes add convenient annotations throughout your content. Now you can add and link footnotes for any paragraph.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/footnotes.png?resize=1024%2C666&ssl=1\" alt=\"Image depicting the new Footnotes Block\" class=\"wp-image-15766\" /><em>Add footnotes effortlessly with the new Footnotes Block</em>\n\n\n\n<h3 class=\"wp-block-heading\">Show or hide content with the Details block</h3>\n\n\n\n<p>Use the Details block to avoid spoiling a surprise, create an interactive Q&amp;A section, or hide a long paragraph under a heading.</p>\n\n\n\n<img width=\"1024\" height=\"666\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/08/details.png?resize=1024%2C666&ssl=1\" alt=\"Image depicting the new Details Block\" class=\"wp-image-15765\" /><em>Display or hide content with the new Details Block</em>\n\n\n\n<h3 class=\"wp-block-heading\">Performance gets a boost</h3>\n\n\n\n<p>WordPress 6.3 has <a href=\"https://make.wordpress.org/core/2023/08/07/wordpress-6-3-performance-improvements/\">170+ performance updates</a>, including defer and async support for the Scripts API and fetchpriority support for images. These improvements, along with block template resolution, image lazy-loading, and the emoji loader, can dramatically improve your website’s perceived load time.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Accessibility remains a core focus</h3>\n\n\n\n<p>Incorporating more than 50 accessibility improvements across the platform, WordPress 6.3 is more accessible than ever. Improved labeling, optimized tab and arrow-key navigation, revised heading hierarchy, and new controls in the admin image editor allow those using assistive technologies to navigate more easily.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other highlights</h3>\n\n\n\n<h4 class=\"wp-block-heading\">Set aspect ratio on images</h4>\n\n\n\n<p>Specify your aspect ratios and ensure design integrity, especially when using images in patterns.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build your site distraction-free</h4>\n\n\n\n<p>Distraction-free designing is now available in the Site Editor.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Rediscover the Top Toolbar</h4>\n\n\n\n<p>A revamped Top Toolbar offers parent selectors for nested blocks, options when selecting multiple blocks, and an interface embedded into the title bar with new functionality in mind.</p>\n\n\n\n<h4 class=\"wp-block-heading\">List View improvements</h4>\n\n\n\n<p>Drag and drop to every content layer and delete any block you would like in the updated List View.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build templates with Patterns</h4>\n\n\n\n<p>Create unique patterns to jumpstart template creation with a new modal enabling access to pattern selection.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Changes in PHP support</h4>\n\n\n\n<p>Support for PHP 5 is discontinued. The&nbsp;new minimum supported version&nbsp;of PHP is 7.0.0.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Failed update safeguards</h4>\n\n\n\n<p>WordPress will now auto-restore the previously installed version of plugins or themes if something goes wrong during a failed manual update.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress and 6.3</h2>\n\n\n\n<p>Explore <a href=\"https://learn.wordpress.org/tutorials/\">Learn WordPress</a> for quick how-to videos, <a href=\"https://learn.wordpress.org/social-learning/\">online workshops</a>, and other resources to level up your knowledge of the latest features in WordPress.&nbsp;</p>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a> for detailed developer notes to help you build with WordPress and get the most out of the latest release. Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-3/\">6.3 release notes</a> for additional technical details about this release, including feature recaps, installation information, file changes, fixes, and updates.</p>\n\n\n\n<p>Read and subscribe to the <a href=\"https://developer.wordpress.org/news/\">Developer Blog</a> for even more helpful WordPress content.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress is a global software platform</h2>\n\n\n\n<p><a href=\"https://translate.wordpress.org/stats/\">61 locales have translated 90 percent</a> or more of WordPress 6.3 into their language. Community translators are working hard to ensure more translations are on their way. Thank you, gracias, ありがとう, धन्यवाद, and ευχαριστώ to everyone who helps to make WordPress available in 200 languages.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributing to WordPress</h2>\n\n\n\n<p>WordPress believes in democratizing publishing and <a href=\"https://opensource.org/osd-annotated\">the freedoms that come with open source</a>. Supporting this idea is a large community of people collaborating to strengthen the software. A big thank you to everyone who makes WordPress.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-large-font-size\">\n<p class=\"has-extra-large-font-size\">Our community of contributors has always been what makes WordPress wonderful. You are what makes sure our project continues to thrive, and our software remains secure, usable, and impactful. Thank you so much for joining together to make the web (and the world) a better place!</p>\n<cite>Josepha Haden Chomphosy, Executive Director, WordPress.org</cite></blockquote>\n\n\n\n<p>WordPress 6.3 arrives thanks to more than 650 contributors&#8217; collective passion and effort in at least 52 countries. This release also includes over 205 first-time contributors!&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\">The 6.3 release squad</h3>\n\n\n\n<p>The 6.3 release was led from start to launch by an active set of contributors from across many disciplines. Over several weeks, they kept the release on track and moving forward by connecting ideas, resolving issues, and removing roadblocks.</p>\n\n\n\n<ul>\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura</a></li>\n\n\n\n<li>Release Coordinators: <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li>\n\n\n\n<li>Core Tech Leads: <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a></li>\n\n\n\n<li>Editor Tech Leads:&nbsp; <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a>, <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon Dodd</a></li>\n\n\n\n<li>Core Triage Leads: <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Glecker</a></li>\n\n\n\n<li>Editor Triage Leads: <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></li>\n\n\n\n<li>Documentation Leads: <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a>, <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a>, <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a>, <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a></li>\n\n\n\n<li>Marketing &amp; Communications Leads: <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a></li>\n\n\n\n<li>Test Leads: <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a>, <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a>, <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a>, <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a></li>\n\n\n\n<li>Design Leads: <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a></li>\n\n\n\n<li>Performance Leads: <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">6.3 contributors</h3>\n\n\n\n<p>Complimenting the release squad is a diverse group of contributors whose global collaboration delivered hundreds of enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress community.&nbsp;</p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/zgrkaralar/\">&#214;zg&#252;r KARALAR</a> · <a href=\"https://profiles.wordpress.org/6adminit/\">6adminit</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/abhi3315/\">abhi3315</a> · <a href=\"https://profiles.wordpress.org/softwortech/\">Abhishek Sharma</a> · <a href=\"https://profiles.wordpress.org/ababir/\">Abir</a> · <a href=\"https://profiles.wordpress.org/abitofmind/\">abitofmind</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/awarner20/\">Adam W. Warner</a> · <a href=\"https://profiles.wordpress.org/adarshposimyth/\">Adarsh Akshat</a> · <a href=\"https://profiles.wordpress.org/adeltahri/\">Adel Tahri</a> · <a href=\"https://profiles.wordpress.org/adi3890/\">Aditya Jain</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a> · <a href=\"https://profiles.wordpress.org/ahsannayem/\">Ahsan Chowdhury</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/akmelias/\">akmelias</a> · <a href=\"https://profiles.wordpress.org/wpfy/\">Akramul Hasan</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/xavortm/\">Alex Dimitrov</a> · <a href=\"https://profiles.wordpress.org/cawa-93/\">Alex Kozack</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alexandrelara/\">Alexandre Lara</a> · <a href=\"https://profiles.wordpress.org/allancole/\">allancole</a> · <a href=\"https://profiles.wordpress.org/mrfoxtalbot/\">Alvaro G&#243;mez</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/akrocks/\">Amaan Khan</a> · <a href=\"https://profiles.wordpress.org/amansurov/\">amansurov</a> · <a href=\"https://profiles.wordpress.org/amin7/\">amin</a> · <a href=\"https://profiles.wordpress.org/sabreuse/\">Amy Hendrix (sabreuse)</a> · <a href=\"https://profiles.wordpress.org/anatoliyav/\">Anatoliy</a> · <a href=\"https://profiles.wordpress.org/anatolikkk/\">Anatoliy Dovgun</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André Maneiro</a> · <a href=\"https://profiles.wordpress.org/andizer/\">Andy</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> · <a href=\"https://profiles.wordpress.org/anilvaza/\">Anil Vaza</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/reputeinfosystems/\">Ankur Chotai</a> · <a href=\"https://profiles.wordpress.org/annashopina/\">Anna</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/annebovelett/\">Anne-Mieke Bovelett</a> · <a href=\"https://profiles.wordpress.org/annziel/\">annziel</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/atimmer/\">Anton Timmermans</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antonyagrios/\">Antony Agrios</a> · <a href=\"https://profiles.wordpress.org/anver/\">anver</a> · <a href=\"https://profiles.wordpress.org/anveshika/\">Anveshika Srivastava</a> · <a href=\"https://profiles.wordpress.org/arafatjamil01/\">Arafat Jamil</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/ideag/\">Arunas Liuiza</a> · <a href=\"https://profiles.wordpress.org/iamasadpolash/\">Asad Polash</a> · <a href=\"https://profiles.wordpress.org/mrasharirfan/\">Ashar Irfan</a> · <a href=\"https://profiles.wordpress.org/ashikurwp/\">Ashikur Rahman</a> · <a href=\"https://profiles.wordpress.org/nant82/\">Atanas Antonov</a> · <a href=\"https://profiles.wordpress.org/aurooba/\">Aurooba Ahmed</a> · <a href=\"https://profiles.wordpress.org/filosofo/\">Austin Matzko</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azizantoun/\">azizantoun</a> · <a href=\"https://profiles.wordpress.org/aznadesign/\">Aznadesign</a> · <a href=\"https://profiles.wordpress.org/bangank36/\">bangank36</a> · <a href=\"https://profiles.wordpress.org/bartkalisz/\">bartkalisz</a> · <a href=\"https://profiles.wordpress.org/empireoflight/\">Ben Dunkle</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benjgrolleau/\">Benjamin Grolleau</a> · <a href=\"https://profiles.wordpress.org/benjibee/\">benjibee</a> · <a href=\"https://profiles.wordpress.org/benlk/\">benlk</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/albatross10/\">Bhavik Kalpesh</a> · <a href=\"https://profiles.wordpress.org/bhrugesh12/\">Bhrugesh Bavishi</a> · <a href=\"https://profiles.wordpress.org/bijayyadav/\">Bijay Yadav</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/bitnissen/\">bitnissen</a> · <a href=\"https://profiles.wordpress.org/gitlost/\">bonger</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bor0/\">Boro Sitnikovski</a> · <a href=\"https://profiles.wordpress.org/wpe_bdurette/\">Brandon DuRette</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bpayton/\">Brandon Payton</a> · <a href=\"https://profiles.wordpress.org/brasofilo/\">brasofilo</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bacoords/\">Brian Coords</a> · <a href=\"https://profiles.wordpress.org/fischfood/\">Brian Fischer</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/bridgetwillard/\">Bridget Willard</a> · <a href=\"https://profiles.wordpress.org/bronsonquick/\">Bronson Quick</a> · <a href=\"https://profiles.wordpress.org/brookemk/\">Brooke Kaminski</a> · <a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a> · <a href=\"https://profiles.wordpress.org/caraffande/\">caraffande</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/cathibosco1/\">Cathi Bosco</a> · <a href=\"https://profiles.wordpress.org/ceer/\">ceer</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/chiragrathod103/\">Chirag Rathod</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/mrflannagan/\">Chris Flannagan</a> · <a href=\"https://profiles.wordpress.org/clubkert/\">Chris Lubkert</a> · <a href=\"https://profiles.wordpress.org/chrismalone617/\">Chris Malone</a> · <a href=\"https://profiles.wordpress.org/chriscct7/\">chriscct7</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/ckoerner/\">ckoerner</a> · <a href=\"https://profiles.wordpress.org/codeamp/\">Code Amp</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/corentingautier/\">corentingautier</a> · <a href=\"https://profiles.wordpress.org/courane01/\">Courtney Robertson</a> · <a href=\"https://profiles.wordpress.org/crixu/\">Crixu</a> · <a href=\"https://profiles.wordpress.org/crs1138/\">crs1138</a> · <a href=\"https://profiles.wordpress.org/crstauf/\">crstauf</a> · <a href=\"https://profiles.wordpress.org/cshark/\">cshark</a> · <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a> · <a href=\"https://profiles.wordpress.org/dbernar1/\">Dan Bernardic</a> · <a href=\"https://profiles.wordpress.org/dansoschin/\">Dan Soschin</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/danyk4/\">danyk4</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/darshitrajyaguru97/\">Darshit Rajyaguru</a> · <a href=\"https://profiles.wordpress.org/drw158/\">Dave Whitley</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidmusnik/\">davidmusnik</a> · <a href=\"https://profiles.wordpress.org/davidwebca/\">davidwebca</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/deepakvijayan/\">Deepak Vijayan</a> · <a href=\"https://profiles.wordpress.org/wtranch/\">Delete My Account</a> · <a href=\"https://profiles.wordpress.org/denis-de-bernardy/\">Denis de Bernardy</a> · <a href=\"https://profiles.wordpress.org/dingo_d/\">Denis Žoljom</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/dennysdionigi/\">Dennys Dionigi</a> · <a href=\"https://profiles.wordpress.org/densityapps/\">densityapps</a> · <a href=\"https://profiles.wordpress.org/sccr410/\">Derek Ashauer</a> · <a href=\"https://profiles.wordpress.org/derekblank/\">Derek Blank</a> · <a href=\"https://profiles.wordpress.org/shagors/\">devshagor</a> · <a href=\"https://profiles.wordpress.org/dharm1025/\">Dharmesh Patel</a> · <a href=\"https://profiles.wordpress.org/dhrumilk/\">Dhrumil Kumbhani</a> · <a href=\"https://profiles.wordpress.org/dhruvishah2203/\">Dhruvi Shah</a> · <a href=\"https://profiles.wordpress.org/digtek/\">DigTek</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dimijazz/\">dimijazz</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/doems/\">doems</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/drewapicture/\">Drew Jaynes</a> · <a href=\"https://profiles.wordpress.org/dsar/\">dsar</a> · <a href=\"https://profiles.wordpress.org/dustyreagan/\">dustyreagan</a> · <a href=\"https://profiles.wordpress.org/ebai4/\">ebai4</a> · <a href=\"https://profiles.wordpress.org/ecorica/\">ecorica</a> · <a href=\"https://profiles.wordpress.org/beckej/\">Ed Beck</a> · <a href=\"https://profiles.wordpress.org/eduwass/\">eduwass</a> · <a href=\"https://profiles.wordpress.org/wpnook/\">Edward</a> · <a href=\"https://profiles.wordpress.org/worldomonation/\">Edwin Takahashi</a> · <a href=\"https://profiles.wordpress.org/ehsanakhgari/\">ehsanakhgari</a> · <a href=\"https://profiles.wordpress.org/ehtis/\">Ehtisham S.</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/clarkeemily/\">Emily Clarke</a> · <a href=\"https://profiles.wordpress.org/emirpprime/\">emirpprime</a> · <a href=\"https://profiles.wordpress.org/nrqsnchz/\">Enrique S&#225;nchez</a> · <a href=\"https://profiles.wordpress.org/eric7186/\">eric.7186</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/ernest35/\">Ernest Behinov</a> · <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a> · <a href=\"https://profiles.wordpress.org/gaambo/\">Fabian Todt</a> · <a href=\"https://profiles.wordpress.org/faisalahammad/\">Faisal Ahammad</a> · <a href=\"https://profiles.wordpress.org/falgunihdesai/\">Falguni Desai</a> · <a href=\"https://profiles.wordpress.org/iamfarhan09/\">Farhan Ahmed</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> · <a href=\"https://profiles.wordpress.org/firoz2456/\">Firoz Sabaliya</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/frank-klein/\">Frank Klein</a> · <a href=\"https://profiles.wordpress.org/franrosa/\">franrosa</a> · <a href=\"https://profiles.wordpress.org/gaeldenysiak/\">gaeldenysiak</a> · <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a> · <a href=\"https://profiles.wordpress.org/ecgan/\">Gan (a11n)</a> · <a href=\"https://profiles.wordpress.org/voldemortensen/\">Garth Mortensen</a> · <a href=\"https://profiles.wordpress.org/garyc40/\">Gary Cao</a> · <a href=\"https://profiles.wordpress.org/garyj/\">Gary Jones</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/wtower/\">George</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/gilles66/\">gilles66</a> · <a href=\"https://profiles.wordpress.org/mokagio/\">Gio Lodi</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/grandslambert/\">GrandSlambert</a> · <a href=\"https://profiles.wordpress.org/grantmkin/\">Grant M. Kinney</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Zi&#243;łkowski</a> · <a href=\"https://profiles.wordpress.org/gudmdharalds/\">Gudmundur Haraldsson</a> · <a href=\"https://profiles.wordpress.org/guillaumeturpin/\">Guillaume TURPIN</a> · <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> · <a href=\"https://profiles.wordpress.org/hztyfoon/\">Hanzala Taifun</a> · <a href=\"https://profiles.wordpress.org/thakkarhardik/\">Hardik Thakkar</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/haritpanchal/\">Harit Panchal</a> · <a href=\"https://profiles.wordpress.org/harshgajipara/\">Harsh Gajipara</a> · <a href=\"https://profiles.wordpress.org/hasanmisbah/\">Hasan Misbah</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/hbhalodia/\">hbhalodia</a> · <a href=\"https://profiles.wordpress.org/heiko_mamerow/\">Heiko Mamerow</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/helgatheviking/\">HelgaTheViking</a> · <a href=\"https://profiles.wordpress.org/luehrsen/\">Hendrik Luehrsen</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/panchalhimani711/\">Himani Panchal</a> · <a href=\"https://profiles.wordpress.org/hrdelwar/\">hrdelwar</a> · <a href=\"https://profiles.wordpress.org/hrrarya/\">Hridoy Mozumder</a> · <a href=\"https://profiles.wordpress.org/hugobaeta/\">Hugo Baeta</a> · <a href=\"https://profiles.wordpress.org/hugod/\">hugod</a> · <a href=\"https://profiles.wordpress.org/hberberoglu/\">Huseyin Berberoglu</a> · <a href=\"https://profiles.wordpress.org/huzaifaalmesbah/\">Huzaifa Al Mesbah</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/polevaultweb/\">Iain Poulson</a> · <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/ibrahimmonir/\">Ibrahim Khalil</a> · <a href=\"https://profiles.wordpress.org/shuvoaftab/\">Ibrahim Sharif</a> · <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a> · <a href=\"https://profiles.wordpress.org/imanish003/\">imanish003</a> · <a href=\"https://profiles.wordpress.org/intoxination/\">intoxination</a> · <a href=\"https://profiles.wordpress.org/ipstenu/\">Ipstenu (Mika Epstein)</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/jacknotman/\">jacknotman</a> · <a href=\"https://profiles.wordpress.org/jahidcse/\">Jahid Hasan</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/james-roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/james0r/\">james0r</a> · <a href=\"https://profiles.wordpress.org/janboddez/\">Jan Boddez</a> · <a href=\"https://profiles.wordpress.org/jane/\">jane</a> · <a href=\"https://profiles.wordpress.org/jankyz/\">jankyz</a> · <a href=\"https://profiles.wordpress.org/janpaulkleijn/\">janpaulkleijn</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/pbking/\">Jason Crist</a> · <a href=\"https://profiles.wordpress.org/jsnjohnston/\">Jason Johnston</a> · <a href=\"https://profiles.wordpress.org/madtownlems/\">Jason LeMahieu (MadtownLems)</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jbcouton/\">jbcouton</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffmora/\">jeffmora</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jenmylo/\">Jen</a> · <a href=\"https://profiles.wordpress.org/jenilk/\">Jenil Kanani</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeroenrotty/\">Jeroen Rotty</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">Jerry Jones</a> · <a href=\"https://profiles.wordpress.org/jhnstn/\">jhnstn</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">jigar bhanushali</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/bitmachina/\">John Hooks</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/jomonthomaslobo1/\">jomonthomaslobo1</a> · <a href=\"https://profiles.wordpress.org/akbigdog/\">Jon Bourne</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a> · <a href=\"https://profiles.wordpress.org/n2erjo00/\">Joni Erkkil&#228;</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost de Valk</a> · <a href=\"https://profiles.wordpress.org/jordesign/\">jordesign</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/josklever/\">Jos Klever</a> · <a href=\"https://profiles.wordpress.org/josepmoran/\">Josep Mor&#225;n</a> · <a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha</a> · <a href=\"https://profiles.wordpress.org/jhabdas/\">Josh Habdas</a> · <a href=\"https://profiles.wordpress.org/shelob9/\">Josh Pollock</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jqz/\">jqz</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juzar/\">Juzar</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/trepmal/\">Kailey (trepmal)</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/leprincenoir/\">Kantari Samy</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/karolmanijak/\">Karol Manijak</a> · <a href=\"https://profiles.wordpress.org/thekt12/\">Karthik Thayyil</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn P.</a> · <a href=\"https://profiles.wordpress.org/kamplugins/\">Kausar Al Mamun</a> · <a href=\"https://profiles.wordpress.org/kausaralm/\">Kausar Alam</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kenwins/\">kenwins</a> · <a href=\"https://profiles.wordpress.org/kevinb/\">Kevin Behrens</a> · <a href=\"https://profiles.wordpress.org/khoipro/\">Khoi Pro</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/knutsp/\">Knut Sparhell</a> · <a href=\"https://profiles.wordpress.org/koenschipper/\">koenschipper</a> · <a href=\"https://profiles.wordpress.org/xkon/\">Konstantinos Xenos</a> · <a href=\"https://profiles.wordpress.org/krishneup/\">Krishna Neupane</a> · <a href=\"https://profiles.wordpress.org/krunal265/\">Krunal Bhimajiyani</a> · <a href=\"https://profiles.wordpress.org/krupajnanda/\">Krupa Nanda</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kutsu/\">kutsu</a> · <a href=\"https://profiles.wordpress.org/kzeni/\">KZeni</a> · <a href=\"https://profiles.wordpress.org/leamcaleese/\">L&#233;a McAleese</a> · <a href=\"https://profiles.wordpress.org/lgadzhev/\">Lachezar Gadzhev</a> · <a href=\"https://profiles.wordpress.org/lanacodes/\">Lana Codes</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a> · <a href=\"https://profiles.wordpress.org/laurentmagnin/\">laurentmagnin</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/leonnugraha/\">Leonardus Nugraha</a> · <a href=\"https://profiles.wordpress.org/lessbloat/\">lessbloat</a> · <a href=\"https://profiles.wordpress.org/levdbas/\">Levdbas</a> · <a href=\"https://profiles.wordpress.org/wplindavantol/\">Linda van Tol</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/lowlydev/\">lowlydev</a> · <a href=\"https://profiles.wordpress.org/lphoumpakka/\">lphk</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/lukecavanagh/\">Luke Cavanagh</a> · <a href=\"https://profiles.wordpress.org/madejackson/\">madejackson</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mehdi01/\">Mahdi Hasan</a> · <a href=\"https://profiles.wordpress.org/mai21/\">Mai</a> · <a href=\"https://profiles.wordpress.org/majaloncar/\">Maja Loncar</a> · <a href=\"https://profiles.wordpress.org/malae/\">Malae</a> · <a href=\"https://profiles.wordpress.org/malavvasita/\">Malav Vasita</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/maniu/\">maniu</a> · <a href=\"https://profiles.wordpress.org/mdxfr/\">Marc</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/marcguay/\">MarcGuay</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a> · <a href=\"https://profiles.wordpress.org/margolisj/\">margolisj</a> · <a href=\"https://profiles.wordpress.org/marianne38/\">marianne38</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/marineevain/\">Marine EVAIN</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/markparnell/\">Mark Parnell</a> · <a href=\"https://profiles.wordpress.org/markdoliner/\">markdoliner</a> · <a href=\"https://profiles.wordpress.org/markoheijnen/\">Marko Heijnen</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a> · <a href=\"https://profiles.wordpress.org/mkox/\">Markus Kosmal</a> · <a href=\"https://profiles.wordpress.org/martinkrcho/\">martin.krcho</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">marybaum</a> · <a href=\"https://profiles.wordpress.org/masteradhoc/\">masteradhoc</a> · <a href=\"https://profiles.wordpress.org/mastrup/\">mastrup</a> · <a href=\"https://profiles.wordpress.org/mat-lipe/\">Mat Lipe</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/matmoe/\">matmoe</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/mwtsn/\">Matt Watson</a> · <a href=\"https://profiles.wordpress.org/mattwiebe/\">Matt Wiebe</a> · <a href=\"https://profiles.wordpress.org/matt_fw/\">matt_fw</a> · <a href=\"https://profiles.wordpress.org/matteoenna/\">Matteo Enna</a> · <a href=\"https://profiles.wordpress.org/mboynes/\">Matthew Boynes</a> · <a href=\"https://profiles.wordpress.org/azouamauriac/\">Mauriac AZOUA</a> · <a href=\"https://profiles.wordpress.org/maurodf/\">maurodf</a> · <a href=\"https://profiles.wordpress.org/cadic/\">Max Lyuchin</a> · <a href=\"https://profiles.wordpress.org/maxcgparis/\">maxcgparis</a> · <a href=\"https://profiles.wordpress.org/maysi/\">maysi</a> · <a href=\"https://profiles.wordpress.org/mayur8991/\">Mayur Prajapati</a> · <a href=\"https://profiles.wordpress.org/mcalyster/\">McAlyster</a> · <a href=\"https://profiles.wordpress.org/mcliwanow/\">mcliwanow</a> · <a href=\"https://profiles.wordpress.org/mahamudur78/\">Md Mahamudur Rahaman</a> · <a href=\"https://profiles.wordpress.org/fencermonir/\">Md Monir Hossain</a> · <a href=\"https://profiles.wordpress.org/shuvo247/\">MD Shakibul Islam</a> · <a href=\"https://profiles.wordpress.org/megane9988/\">megane9988</a> · <a href=\"https://profiles.wordpress.org/meher/\">Meher Bala</a> · <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/menakas/\">Menaka S.</a> · <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a> · <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a> · <a href=\"https://profiles.wordpress.org/mdawaffe/\">Michael Adams (mdawaffe)</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/mikeday/\">Michael Day</a> · <a href=\"https://profiles.wordpress.org/michaelh/\">MichaelH</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/mikeschinkel/\">Mike Schinkel</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/mikecho/\">mikecho</a> · <a href=\"https://profiles.wordpress.org/mikeyzm/\">mikeyzm</a> · <a href=\"https://profiles.wordpress.org/mikinc860/\">Mikin Chauhan</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/gonzomir/\">Milen Petrinski - Gonzo</a> · <a href=\"https://profiles.wordpress.org/studionashvegas/\">Mitch Canter</a> · <a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a> · <a href=\"https://profiles.wordpress.org/mitchoyoshitaka/\">mitcho (Michael Yoshitaka Erlewine)</a> · <a href=\"https://profiles.wordpress.org/moinrrahmed/\">Moe</a> · <a href=\"https://profiles.wordpress.org/batmoo/\">Mohammad Jangda</a> · <a href=\"https://profiles.wordpress.org/mohanrajp/\">Mohan Raj</a> · <a href=\"https://profiles.wordpress.org/patelmohip/\">Mohip Patel</a> · <a href=\"https://profiles.wordpress.org/mohiuddinomran/\">Mohiuddin Omran</a> · <a href=\"https://profiles.wordpress.org/boemedia/\">Monique Dubbelman</a> · <a href=\"https://profiles.wordpress.org/monzuralam/\">Monzur Alam</a> · <a href=\"https://profiles.wordpress.org/mor10/\">Morten Rand-Hendriksen</a> · <a href=\"https://profiles.wordpress.org/mrinal013/\">Mrinal Haque</a> · <a href=\"https://profiles.wordpress.org/mtxz/\">mtxz</a> · <a href=\"https://profiles.wordpress.org/thisisyeasin/\">Muhammad Yeasin</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/611shabnam/\">Mushrit Shabnam</a> · <a href=\"https://profiles.wordpress.org/nadimcse/\">nadimcse</a> · <a href=\"https://profiles.wordpress.org/naeemhaque/\">Naeem Haque</a> · <a href=\"https://profiles.wordpress.org/tushar284/\">Nahid Hasan</a> · <a href=\"https://profiles.wordpress.org/narthur/\">Narthur</a> · <a href=\"https://profiles.wordpress.org/nataliat2004/\">nataliat2004</a> · <a href=\"https://profiles.wordpress.org/nateallen/\">Nate Allen</a> · <a href=\"https://profiles.wordpress.org/nazgul/\">Nazgul</a> · <a href=\"https://profiles.wordpress.org/nazmul111/\">Nazmul Hosen</a> · <a href=\"https://profiles.wordpress.org/nazmulhudadev/\">Nazmul Huda</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/nickpap/\">nickpap</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nihar007/\">Nihar Ranjan Das</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/nilovelez/\">Nilo Velez</a> · <a href=\"https://profiles.wordpress.org/dhrupo/\">Niluthpal Purkayastha</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/njsamsatli/\">njsamsatli</a> · <a href=\"https://profiles.wordpress.org/nkeller15/\">nkeller15</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/obliviousharmony/\">obliviousharmony</a> · <a href=\"https://profiles.wordpress.org/hideokamoto/\">Okamoto Hidetaka</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> · <a href=\"https://profiles.wordpress.org/opr18/\">opr18</a> · <a href=\"https://profiles.wordpress.org/orestissam/\">Orestis Samaras</a> · <a href=\"https://profiles.wordpress.org/ov3rfly/\">Ov3rfly</a> · <a href=\"https://profiles.wordpress.org/owi/\">owi</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pamprn/\">Pamela Ribeiro</a> · <a href=\"https://profiles.wordpress.org/paragoninitiativeenterprises/\">Paragon Initiative Enterprises</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pateljaymin/\">Patel Jaymin</a> · <a href=\"https://profiles.wordpress.org/patriciahillebrandt/\">patriciahillebrandt</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/pschrottky/\">Paul Von Schrottky</a> · <a href=\"https://profiles.wordpress.org/paulopmt1/\">Paulo Trentin</a> · <a href=\"https://profiles.wordpress.org/pavanpatil1/\">Pavan Patil</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> · <a href=\"https://profiles.wordpress.org/westi/\">Peter Westwood</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walb&#248; Johnsg&#229;rd</a> · <a href=\"https://profiles.wordpress.org/tyrannous/\">Philipp Bammes</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/strategio/\">Pierre Sylvestre</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/pitamdey/\">Pitam Dey</a> · <a href=\"https://profiles.wordpress.org/piyushtekwani/\">Piyush Tekwani</a> · <a href=\"https://profiles.wordpress.org/pkbhatt/\">pkbhatt</a> · <a href=\"https://profiles.wordpress.org/platonkristinin/\">Platon Kristinin</a> · <a href=\"https://profiles.wordpress.org/webtechpooja/\">Pooja Derashri</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pouicpouic/\">pouicpouic</a> · <a href=\"https://profiles.wordpress.org/prashantbhivsane/\">Prashant</a> · <a href=\"https://profiles.wordpress.org/prashantvatsh/\">Prashant Singh</a> · <a href=\"https://profiles.wordpress.org/pravinparmar2404/\">Pravin Parmar</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/prikari/\">Priyanka Adhikari</a> · <a href=\"https://profiles.wordpress.org/przemekhernik/\">Przemek Hernik</a> · <a href=\"https://profiles.wordpress.org/rachelbaker/\">Rachel Baker</a> · <a href=\"https://profiles.wordpress.org/bi0xid/\">Rafa Poveda</a> · <a href=\"https://profiles.wordpress.org/rfischmann/\">Rafael Fischmann</a> · <a href=\"https://profiles.wordpress.org/rajanpanchal2028/\">Rajan Panchal</a> · <a href=\"https://profiles.wordpress.org/rajinsharwar/\">Rajin Sharwar</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/ratneshsonar/\">Ratnesh Sonar</a> · <a href=\"https://profiles.wordpress.org/rehanali/\">Rehan Ali</a> · <a href=\"https://profiles.wordpress.org/rembem/\">rembem</a> · <a href=\"https://profiles.wordpress.org/renyot/\">ren</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/rianrietveld/\">Rian Rietveld</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/richards1052/\">richards1052</a> · <a href=\"https://profiles.wordpress.org/richiecarey/\">Richie Carey</a> · <a href=\"https://profiles.wordpress.org/rjasdfiii/\">rjasdfiii</a> · <a href=\"https://profiles.wordpress.org/rob1n/\">rob1n</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/sanchothefat/\">Robert O\'Rourke</a> · <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> · <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/ronakganatra/\">Ronak Ganatra</a> · <a href=\"https://profiles.wordpress.org/algorithmsunlocks/\">Ruman Ahmed</a> · <a href=\"https://profiles.wordpress.org/rutviksavsani/\">Rutvik Savsani</a> · <a href=\"https://profiles.wordpress.org/ryan/\">Ryan Boren</a> · <a href=\"https://profiles.wordpress.org/bookdude13/\">Ryan Fredlund</a> · <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a> · <a href=\"https://profiles.wordpress.org/rmccue/\">Ryan McCue</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/sereedmedia/\">S&#233; Reed</a> · <a href=\"https://profiles.wordpress.org/sebastienserre/\">S&#233;bastien SERRE</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a> · <a href=\"https://profiles.wordpress.org/suleymankenar/\">S&#252;leyman Kenar</a> · <a href=\"https://profiles.wordpress.org/andy786/\">Sahil B.</a> · <a href=\"https://profiles.wordpress.org/sajjad67/\">Sajjad Hossain Sagor</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/salvoaranzulla/\">salvoaranzulla</a> · <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/samnajian/\">SamNajian</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarequl/\">Sarequl Basar</a> · <a href=\"https://profiles.wordpress.org/saxonfletcher/\">Saxon Fletcher</a> · <a href=\"https://profiles.wordpress.org/coffee2code/\">Scott Reilly</a> · <a href=\"https://profiles.wordpress.org/wonderboymusic/\">Scott Taylor</a> · <a href=\"https://profiles.wordpress.org/scribu/\">scribu</a> · <a href=\"https://profiles.wordpress.org/sdavis2702/\">Sean Davis</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/shailu25/\">Shail Mehta</a> · <a href=\"https://profiles.wordpress.org/sh4lin/\">Shalin Shah</a> · <a href=\"https://profiles.wordpress.org/enchiridion/\">Shannon Little</a> · <a href=\"https://profiles.wordpress.org/shiponkarmakar/\">Shipon Karmakar</a> · <a href=\"https://profiles.wordpress.org/shreyasikhar26/\">Shreyas Ikhar</a> · <a href=\"https://profiles.wordpress.org/shubhamsedani/\">shubhamsedani</a> · <a href=\"https://profiles.wordpress.org/shuvo586/\">shuvo586</a> · <a href=\"https://profiles.wordpress.org/shvv/\">shvv</a> · <a href=\"https://profiles.wordpress.org/shwetabathani2312/\">Shweta Bathani</a> · <a href=\"https://profiles.wordpress.org/siddhantwadhwani/\">Siddhant Wadhwani</a> · <a href=\"https://profiles.wordpress.org/rsiddharth/\">siddharth ravikumar</a> · <a href=\"https://profiles.wordpress.org/nomnom99/\">Siddharth Thevaril</a> · <a href=\"https://profiles.wordpress.org/10upsimon/\">Simon Dowdles</a> · <a href=\"https://profiles.wordpress.org/simonemanfre/\">Simone</a> · <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/sirajummahdi/\">Sirajum Mahdi</a> · <a href=\"https://profiles.wordpress.org/sboerrigter/\">Sjoerd Boerrigter</a> · <a href=\"https://profiles.wordpress.org/sjoerdlinders/\">Sjoerd Linders</a> · <a href=\"https://profiles.wordpress.org/skorasaurus/\">skorasaurus</a> · <a href=\"https://profiles.wordpress.org/smit08/\">Smit Rathod</a> · <a href=\"https://profiles.wordpress.org/soean/\">Soren Wrede</a> · <a href=\"https://profiles.wordpress.org/enderandpeter/\">Spencer</a> · <a href=\"https://profiles.wordpress.org/sque/\">sque</a> · <a href=\"https://profiles.wordpress.org/srikanthmeenakshi/\">srikanthmeenakshi</a> · <a href=\"https://profiles.wordpress.org/sstoqnov/\">Stanimir Stoyanov</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/vanaf1979/\">Stephan Nijman</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/stevenlinx/\">Steven Lin</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sudipatel007/\">Sudip Dadhaniya</a> · <a href=\"https://profiles.wordpress.org/sumitbagthariya16/\">Sumit Bagthariya</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/codemonksuvro/\">Suvro</a> · <a href=\"https://profiles.wordpress.org/suzettefranck/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/mt_suzette/\">Suzette Franck</a> · <a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/nuhel/\">Syed Nuhel</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/tacoverdo/\">Taco Verdonschot</a> · <a href=\"https://profiles.wordpress.org/tahmina1du/\">Tahmina Jahan</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/karmatosed/\">Tammie Lister</a> · <a href=\"https://profiles.wordpress.org/tanner-m/\">Tanner Moushey</a> · <a href=\"https://profiles.wordpress.org/thakordarshil/\">Thakor Darshil</a> · <a href=\"https://profiles.wordpress.org/thomask/\">thomask</a> · <a href=\"https://profiles.wordpress.org/thunderdw/\">thunder rumbles</a> · <a href=\"https://profiles.wordpress.org/tijmensmit/\">Tijmen Smit</a> · <a href=\"https://profiles.wordpress.org/tillkruess/\">Till Kr&#252;ss</a> · <a href=\"https://profiles.wordpress.org/tb1909/\">Tim Brath&#228;rig</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tmatsuur/\">tmatsuur</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/thomasdevisser/\">Tom de Visser</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/shimotomoki/\">Tomoki Shimomura</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/r0uter/\">tonythomas01</a> · <a href=\"https://profiles.wordpress.org/toro_unit/\">Toro_Unit (Hiroshi Urabe)</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a> · <a href=\"https://profiles.wordpress.org/scep/\">Tryon</a> · <a href=\"https://profiles.wordpress.org/twstokes/\">twstokes</a> · <a href=\"https://profiles.wordpress.org/tyb/\">TyB</a> · <a href=\"https://profiles.wordpress.org/ugyensupport/\">Ugyen Dorji</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/umeshmcakadi/\">Umesh Patel</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">Upadala Vipul</a> · <a href=\"https://profiles.wordpress.org/utsav72640/\">Utsav tilava</a> · <a href=\"https://profiles.wordpress.org/uxtremist/\">uxtremist</a> · <a href=\"https://profiles.wordpress.org/eboxnet/\">Vagelis</a> · <a href=\"https://profiles.wordpress.org/valterlorran/\">valterlorran</a> · <a href=\"https://profiles.wordpress.org/vasilism/\">Vasilis Manthos</a> · <a href=\"https://profiles.wordpress.org/victoranto/\">victoranto</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/vivekawsm/\">vivekawsm</a> · <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/williampatton/\">williampatton</a> · <a href=\"https://profiles.wordpress.org/wlindley/\">wlindley</a> · <a href=\"https://profiles.wordpress.org/wojtekszkutnik/\">Wojtek Szkutnik</a> · <a href=\"https://profiles.wordpress.org/wplmillet/\">wplmillet</a> · <a href=\"https://profiles.wordpress.org/xerpa43/\">xerpa43</a> · <a href=\"https://profiles.wordpress.org/xmarcos/\">xmarcos</a> · <a href=\"https://profiles.wordpress.org/yaniiliev/\">Yani Iliev</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/zdrobau/\">Zdrobau</a> · <a href=\"https://profiles.wordpress.org/zebaafiashama/\">Zeba Afia Shama</a> · <a href=\"https://profiles.wordpress.org/zebulan/\">Zebulan Stanphill</a> · <a href=\"https://profiles.wordpress.org/zenaulislam/\">Zenaul Islam</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> · <a href=\"https://profiles.wordpress.org/zunaid321/\">Zunaid Amin</a></p>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress support forums</h3>\n\n\n\n<p>Many thanks to the community volunteers who contribute to the <a href=\"https://wordpress.org/support/\">support forums</a> by answering questions from WordPress users worldwide.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Get involved today</h3>\n\n\n\n<p>If contributing to WordPress appeals to you, learning more and getting involved is easy. Discover the teams that come together to <a href=\"https://make.wordpress.org/\">Make WordPress</a> and explore the product roadmap on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>. You can also use this <a href=\"https://make.wordpress.org/contribute/\">interactive tool</a> to help you decide which team is right for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking toward the future</h2>\n\n\n\n<p>20 years ago this past May, <a href=\"https://wordpress.org/news/2003/05/wordpress-now-available/\">WordPress shipped the very first version, 0.7</a>. What started with a blog post from co-founder Matt Mullenweg and a subsequent comment by co-founder Mike Little eventually evolved into the world’s most popular web publishing platform.</p>\n\n\n\n<p>WordPress software continues to evolve and iterate based on the needs and desires of its robust and diverse user community. This release is the capstone of <a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2</a> along the WordPress <a href=\"https://wordpress.org/about/roadmap/\">development roadmap</a>. As the community looks to the future, all efforts turn to <a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">6.4</a> and, subsequently, the transition into <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3</a>, which is expected to introduce powerful collaboration tools to the website creation and management experience.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\">6.3 Haiku</h2>\n\n\n\n<p>A capstone release<br />Ships tools for building great sites<br />Collaboration</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 20:03:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matias Ventura\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Do The Woo Community: A Look at Weglot, the Product and the Company, with Thomas Fanchin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75815\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://dothewoo.io/a-look-at-weglot-the-product-and-the-company-with-thomas-fanchin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:455:\"<p>Thomas Fanchin, Weglot\'s partnership manager, discusses their involvement in WordPress, partnerships, and community engagement.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/a-look-at-weglot-the-product-and-the-company-with-thomas-fanchin/\">A Look at Weglot, the Product and the Company, with Thomas Fanchin</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 09:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"WPTavern: ConvertKit Updates WordPress Plugin, Adds Members Only Content, Newsletter Feed, and Product Embeds\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147547\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://wptavern.com/covertkit-updates-wordpress-plugin-adds-members-only-content-newsletter-feed-and-product-embeds\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2808:\"<p><a href=\"https://convertkit.com/\">ConvertKit</a> has updated its <a href=\"https://wordpress.org/plugins/convertkit/\">official WordPress plugin</a> and <a href=\"https://wordpress.org/plugins/convertkit-for-woocommerce/#description\">WooCommerce add-on</a> to support a range of new features. More than 40,000 sites use ConvertKit&#8217;s plugin to integrate their newsletters, email campaigns, and digital products with WordPress. The service is <a href=\"https://convertkit.com/pricing\">free for the user&#8217;s first 1,000 subscribers</a> but offers more automated features and third party integration on its paid tiers.</p>\n\n\n\n<p>The latest version of the ConvertKit plugin for WordPress brings the &#8220;Members Content&#8221; feature out of beta. It allows site owners to set up gated content for things like courses, e-books, or curated content without having to switch platforms, keeping members on the WordPress site.</p>\n\n\n\n<p>In the WordPress admin, under the ConvertKit >> Member Content settings, admins can now specify a <a rel=\"noreferrer noopener\" href=\"https://help.convertkit.com/en/articles/4199330-convertkit-commerce-creating-a-product\" target=\"_blank\">ConvertKit Commerce product</a> to be required in order to view a post, page, or WooCommerce product page.</p>\n\n\n\n<img width=\"895\" height=\"700\" />WordPress content gated by ConvertKit subscription &#8211; image source: <a href=\"https://help.convertkit.com/en/articles/7896769-how-to-customize-your-convertkit-subscribers-experience-on-your-wordpress-website\">ConvertKit documentation</a>\n\n\n\n<p>This update also adds a &#8220;Newsletter feed&#8221; that ConvertKit users can embed on their WordPress sites to display a paginated list of their public broadcast emails. It can be shown as a grid with images and descriptions or a list with subject and date.</p>\n\n\n\n<p>Recent updates to the plugin also introduce product embeds, allowing site owners to create a storefront of their ConvertKit products on their WordPress sites. The styles for the embedded products can be edited inside the Site Editor.</p>\n\n\n\n<p>Other notable improvements in this round of updates include the following: </p>\n\n\n\n<ul>\n<li>The WooCommerce add-on for ConvertKit has been updated to map customer first and last names to ConvertKit custom fields</li>\n\n\n\n<li>New &#8220;Form Trigger Block&#8221; creates a button that triggers a pop-up modal </li>\n\n\n\n<li>PHP SDK now available for building on top of the ConvertKit API</li>\n</ul>\n\n\n\n<p>More detailed information on the settings for the new features is available in the ConvertKit documentation on <a href=\"https://help.convertkit.com/en/articles/7896769-how-to-customize-your-convertkit-subscribers-experience-on-your-wordpress-website\">customizing subscribers&#8217; experience on WordPress websites</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 08 Aug 2023 02:58:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"WPTavern: The First Learn WordPress Course Cohort Will Teach Participants How to Develop Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147549\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/the-first-learn-wordpress-course-cohort-will-teach-participants-how-to-develop-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2101:\"<p>WordPress&#8217; Training Team is <a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">launching</a> its first Learn WordPress Course Cohort, which is a social learning method where a group of people go through the learning process together with some synchronous group activities. One of the benefits of cohorts is the sense of community and connection that can develop between the participants, fostering more support and collaboration.</p>\n\n\n\n<p>The first course cohort topic is &#8220;Developing your first WordPress Block,&#8221; aimed at first-time block developers who have never built a block before. It lasts six weeks and covers the following topics: </p>\n\n\n\n<ul>\n<li>Week 1: Introduction, preparing your environment for block development.</li>\n\n\n\n<li>Week 2: Using create-block to scaffold your first block, Internationalisation.&nbsp;</li>\n\n\n\n<li>Week 3: Block styling, block supports, block controls</li>\n\n\n\n<li>Week 4: Block attributes, block components&nbsp;</li>\n\n\n\n<li>Week 5: Interacting with WordPress data</li>\n\n\n\n<li>Week 6: Dynamic blocks</li>\n</ul>\n\n\n\n<p>The cohort is limited to 14 participants who will be selected at random if they meet the requirements. These include a WordPress.org profile, a Make Slack account, and availability every Wednesday at 8:00 UTC for the duration of the course.</p>\n\n\n\n<p>A course on beginning block development is likely to be very popular, so the Training team has committed to maintaining a waiting list for any applications that are not selected in the first round. This is a remarkable opportunity for any developer who has not yet experimented with building blocks but thrives in a more social learning environment.  Future cohort courses on the same topic will be scheduled after this one is complete.</p>\n\n\n\n<p>The deadline to <a href=\"https://learnwordpress.survey.fm/developing-your-first-wordpress-block-course-cohort-sign-up\">apply to the very first Learn WordPress course cohort</a> is August 20, 2023, and the course will run from  September 4th to October 9th, 2023.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Aug 2023 20:02:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"Gutenberg Times: Big Changes coming, Hallway Hangout, new course cohort and building custom design tools—Weekend Edition 264\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25117\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:133:\"https://gutenbergtimes.com/big-changes-coming-hallway-hangout-new-course-cohort-and-building-custom-design-tools-weekend-edition-264/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17242:\"<p>Howdy, </p>\n\n\n\n<p>I&#8217;ll be on vacation for the next two weeks and during that time, I will stay away from the computer or phone as much as possible. Really disconnect from the net. I&#8217;ll let you know how that went when I&#8217;ll get back ? </p>\n\n\n\n<p>While I am gone, WordPress 6.3 will come out next week, and I hope my efforts to  share all that information prepared you, your clients, and teammates well for the next major release.</p>\n\n\n\n<p>In case you missed it, the comments on this post by Josepha Haden Chomphosy  <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a> will be open until August 15, 2023. &#8220;<em>Adding your&nbsp;ticket&nbsp;here won’t necessarily guarantee inclusion. But no one can fix things they can’t see, so bravely share your thoughts!</em>&#8221; </p>\n\n\n\n<p>So I am almost out the door! Be well! </p>\n\n\n\n<p>Yours, ?<br /><em>Birgit</em></p>\n\n\n\n<p>PS: I might share some photos on <a href=\"https://www.instagram.com/idx/\">Instagram @idx </a></p>\n\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-theme-development-for-full-site-editing-and-blocks\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-upcoming-word-press-events\">Upcoming WordPress Events</a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Doc Pop</strong> interviewed <strong>Justin Tadlock</strong> on the podcast <em>Press This:</em><strong> <a href=\"https://torquemag.io/2023/08/press-this-wordpress-6-3/\">Big Changes Coming to WordPress 6.3</a></strong>. They discussed the upcoming WordPress 6.3 release, which marks the end of Phase Two of Gutenberg development. </p>\n\n\n\n<p>As some of you already know, the features in WordPress 6.3 include a revamped site editor interface with better navigation and stylebook support, making it easier for non-coders to customize their sites visually. </p>\n\n\n\n<p>A new Command Palette is introduced, enabling users to quickly access various functions in Gutenberg. There are also performance improvements, such as fetch priority support for images and updates to the cache and file system API.</p>\n\n\n\n<a href=\"https://wordpress.org/news/category/releases/\"><img /></a>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-accent-color has-alpha-channel-opacity has-accent-background-color has-background is-style-wide\" />\n\n\n\n<p><strong>Joen Assmussen</strong> collected all the great work of the WordPress design team in his latest <a href=\"https://make.wordpress.org/design/2023/07/31/design-share-jul-3-jul-28/\">Design Share: Jul 3-Jul 28</a>, among those</p>\n\n\n\n<ul>\n<li>Search views and a Meta search for Openverse</li>\n\n\n\n<li>Refined revamp of the showcase pages with additional filter component on WordPress.org </li>\n\n\n\n<li>Assemble a WordPress Design Library for various teams to use</li>\n\n\n\n<li>Details page for Template parts</li>\n\n\n\n<li>Improved Confirm dialog modals, and</li>\n\n\n\n<li>Lots of design work for the new pattern screens in the Site Editor</li>\n</ul>\n\n\n\n<a href=\"https://make.wordpress.org/design/2023/07/31/design-share-jul-3-jul-28/\"><img /></a>Screenshot of Showcase redesign\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>?️ </strong> Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-87/\">Gutenberg Changelog #87 – Patterns, Gutenberg 16.3 and WordPress 6.3.</a> with Anne McCarthy as special guest, hosted by Birgit Pauli-Haack</p>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><br />In his latest video, <strong>Dustin Hartzler</strong> wants you to <a href=\"https://www.youtube.com/watch?v=p9Tz-QErKXQ\"><strong>Master Text Formatting in WordPress Block Editor</strong></a>. </p>\n\n\n\n<ul>\n<li>? Learn the basics of bold, italics, and underlining to add emphasis to your content. </li>\n\n\n\n<li>? Discover the power of heading levels to structure and organize your articles effectively. </li>\n\n\n\n<li>? Personalize your text with different font styles and sizes that match your unique brand. </li>\n\n\n\n<li>? Paint with words by changing text colors and adding a splash of creativity to your content. </li>\n\n\n\n<li>? Highlight key points and quotes to make them shine and stand out. </li>\n\n\n\n<li>? Master text alignment to achieve visually appealing and well-balanced content layouts.</li>\n</ul>\n\n\n\n<p>Hartzler is a long-time podcaster in the WordPress space, who just published his <a href=\"https://yourwebsiteengineer.com/532-why-its-a-good-idea-to-switch-to-the-block-editor/\">525th episode of the Your Website Engineer podcast</a>. Congratulations! </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-theme-development-for-full-site-editing-and-blocks\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n\n<div class=\"ngl-articles colored ngl-articles-30_70 ngl-articles-frontend\">\n\n	\n	<div class=\"ngl-articles-wrap ngl-articles-webview\">\n	\n						\n			<div class=\"ngl-article-mobile\">\n				<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n					<tr>\n						<td valign=\"top\">\n							<div class=\"ngl-article-mob-wrap\">\n							<div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/live-q-a-design-systems-and-theme-json/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/08/Demo-screenshot-Live-Q-A-Design-Systems.png?w=652&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/live-q-a-design-systems-and-theme-json/\" target=\"_self\" rel=\"\"><span>Live Q &#038; A: Design Systems and theme.json</span></a></div><div class=\"ngl-article-excerpt\">One of the key challenges of running a site or series of sites at scale is ensuring design consistency and compliance with a design system. During this show, David Bowman,&hellip; <a href=\"https://gutenbergtimes.com/live-q-a-design-systems-and-theme-json/\" class=\"ngl-article-read-more\" target=\"_self\">Read more.</a></div>							</div>\n						</td>\n					</tr>\n				</table>\n			</div>\n			\n			\n			\n\n		\n		\n		</div>\n\n</div>\n\n\n\n\n<p>You must have been waiting for the part 3 of the Beyond Block Styles to come out! Don&#8217;t wait not more! <strong>Justin Tadlock</strong> pushed it over the finish line! <a href=\"https://developer.wordpress.org/news/2023/08/beyond-block-styles-part-3-building-custom-design-tools/\"><strong>Beyond block styles, part 3: building custom design tools</strong></a>. You learn how to add a button and a set of icons to the block toolbar for the Separator block. It&#8217;s a great tutorial for advanced theme developers. </p>\n\n\n\n<p>You would need to to read the other two parts before it, though: </p>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">Part 1: using the WordPress scripts package with themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-2-building-a-custom-style-for-the-separator-block/\">Part 2: building a custom style for the Separator block</a></li>\n</ul>\n\n\n\n<p>It&#8217;s a great project to study from beginning to end. I learned so much about the inner workings of the block editor. </p>\n\n\n\n<img />\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>Early Gutenberg adopter and freelance developer, <strong>Igor Benic</strong> shared in his post <a href=\"https://www.ibenic.com/read-wordpress-block-content-programmatically/\"><strong>How to Read WordPress Block Content Programmatically</strong></a> and read blocks from content in WordPress. You&#8217;ll learn how to tap into the functions of the <code>core/block-editor</code> packages. ICYMI, Benic also published <a href=\"https://www.ibenic.com/how-to-programmatically-add-a-block-in-the-wordpress-block-editor/\">How to programmatically add a block in the WordPress Block Editor</a> earlier this year. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> reported on how you should <a href=\"https://wptavern.com/start-testing-wordpress-new-interactivity-api\"><strong>Start Testing WordPress’ New Interactivity API</strong></a>. It&#8217;s still unsure of the Interactivity API will be ready for 6.4 release in November, the Interactivity API packages and features made their way to the Gutenberg plugin with version 16.2. &#8220;Developers can follow the API’s&nbsp;<a href=\"https://github.com/WordPress/gutenberg/blob/trunk/packages/interactivity/docs/1-getting-started.md\">“Getting Started” guide</a>&nbsp;on GitHub to scaffold an interactive block with `@wordpress/create-block`. Take a look at the&nbsp;<a href=\"https://github.com/WordPress/gutenberg/discussions/52904\">roadmap</a>, which has an extensive list of tasks the team has in mind for the initiative and will include tracking issues for features as they progress.&#8221; Gooding wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"4-upcoming-word-press-events\">Upcoming WordPress Events</h2>\n\n\n\n<p>Join <strong>Nick Diego</strong> and <strong>Justin Tadlock</strong> for a Hallway Hangout on August 17, 2023, at 1:00 PM CST (18:00 UTC) on <strong><a href=\"https://make.wordpress.org/themes/2023/07/31/hallway-hangout-extending-blocks-with-custom-design-tools/\">Extending blocks with custom design tools</a>. </strong>They&#8217;ll have a casual conversation about creating custom design tools for blocks from a theming perspective. You&#8217;ll learn how to go beyond the Block Styles API and build your own custom controls, like an <a href=\"https://developer.wordpress.org/news/2023/08/beyond-block-styles-part-3-building-custom-design-tools/\"><em>emoji-based icon picker for the Separator block</em></a>. Tadlock and Diego will also explore the possibilities of using block development to extend block themes and discuss current theme development limitations. </p>\n\n\n\n<p>Everyone is welcome, but if you&#8217;re interested in block theming or building block themes for clients, this session is especially for you. <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/295158615/\">RSVP for the event</a> through the Learn WordPress Meetup group to access the meeting link. Don&#8217;t miss it!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>WordCamp US</strong> organizers published <a href=\"https://us.wordcamp.org/2023/schedule/\">their schedule for the talks on August 25 and 26, 2023</a>. As with all Regional Flagship events, there will be a live stream. Here is a list of the block related topics. </p>\n\n\n\n<ul>\n<li><a href=\"https://us.wordcamp.org/2023/session/building-a-thoughtful-block-editing-experience/\">Building a thoughtful block editing experience</a> w/ Aurooba Ahmed (lightning) </li>\n\n\n\n<li><a href=\"https://us.wordcamp.org/2023/session/the-headless-block-editor/\">The Headless Block Editor</a> w/ Sean Bleakley </li>\n\n\n\n<li><a href=\"https://us.wordcamp.org/2023/session/the-independent-theme-developers-field-guide-to-modern-wordpress/\">The independent theme developer’s field guide to modern WordPress</a> w/ Michelle Schlup Hunt</li>\n</ul>\n\n\n\n<p>I love the emphasis on contributing, community and accessibility! </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jonathan Bossenger</strong> <a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\"><strong>announced the first Learn WordPress course cohort</strong></a> on the training team&#8217;s blog: On September 4th, a 6-week cohort titled &#8220;Developing your first WordPress Block&#8221; starts. Bossenger will facilitate the course designed for first-time WordPress block developers. The structure includes weekly sessions covering block development topics such as block styling, attributes, and interacting with WordPress data. </p>\n\n\n\n<p>The cohort will meet in both asynchronous and synchronous sessions, with a one-hour real-time session every Wednesday at 8:00 UTC. If interested, read more about the application and selection processes in the <a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">blog post</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Nathan Wrigley</strong> and <strong><a href=\"https://twitter.com/anchenlr\">Anchen le Roux</a> </strong>scheduled this year&#8217;s <a href=\"https://pagebuildersummit.com/\"><strong>Page Builder Summit  for 18th &#8211; 22nd September 2023</strong></a>. They put together  is a great slate of new and veteran speakers. It&#8217;ll have plenty of Gutenberg topics, and it doesn&#8217;t hurt to learn about all the businesses and products in the WordPress space. </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: &#8220;<a href=\"https://www.flickr.com/photos/54227024@N02/8261708942\" target=\"_blank\" rel=\"noreferrer noopener\">Mumbai Lab Architecture</a>&#8221; by&nbsp;<a href=\"https://www.flickr.com/photos/54227024@N02\" target=\"_blank\" rel=\"noreferrer noopener\">BMW Guggenheim Lab</a>&nbsp;is licensed under&nbsp;<a href=\"https://creativecommons.org/licenses/by-nd-nc/2.0/jp/?ref=openverse\" target=\"_blank\" rel=\"noreferrer noopener\">CC BY-NC-ND 2.0</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Aug 2023 10:00:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:125:\"Post Status: WordPress 6.3 RC3 • Cyber Resilience Act • Accessibility in Block Editing • Merging Gutenberg during Alpha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=150074\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://poststatus.com/wordpress-6-3-rc3-cyber-resilience-act-accessibility-in-block-editing-merging-gutenberg-during-alpha/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:25590:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (July 30, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">What do WordPress, Drupal, Joomla, and TYPO3 have in common? Leaders across these Content Management Systems have <a href=\"https://youtu.be/tbnblHzHqBU\">come together</a> to express their concerns and seek dialogue with EU legislators regarding the proposed <a href=\"https://digital-strategy.ec.europa.eu/en/library/cyber-resilience-act\">Cyber Resilience Act</a>. They emphasize the vital role of Free and Open Source Software in fostering innovation, security, and economic prosperity. <br /><br />We&#8217;re just a few days away from August 8th&#8217;s WordPress 6.3 release. <br /><br />Two Gutenberg-related topics are worth consideration. First, Alex Stine shares how he sees WordPress using his screen reader. Secondly, consideration is underway to merge Gutenberg plugin releases into alpha releases.  </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fe_gitMerge kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, Whose Ticket, Merging Gutenberg during Alpha, and EU CRA</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f195.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\">WordPress 6.3 RC3</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f39f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a><br /><br /> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2934.png\" alt=\"⤴\" class=\"wp-smiley\" /><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f510.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\">Concerns over the European Union’s Cyber Resilience Act (CRA)</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\">WordPress 6.3 RC3</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/people-of-wordpress-ihtisham-zahoor/\">People of WordPress: Ihtisham Zahoor</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-3\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/wordpress-6-3-release-day-process/\">WordPress 6.3 Release Day Process</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-2-release-candidate-phase-2/\">WordPress 6.3 Release Candidate Phase</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\">WordPress 6.3 Field Guide and Dev-Notes</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-8\">\n<div class=\"wp-block-column is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-6\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/04/accessibility-team-meeting-agenda-august-4-2023/\">Accessibility Team Meeting Agenda: August 4, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/accessibility/2023/08/04/testing-matrix/\">Testing Matrix</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/new-github-feature-request-separating-access-to-the-meetup-and-wordcamp-trackers/\">New GitHub Feature Request: Separating access to the Meetup and WordCamp trackers</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/community-team-meeting-agenda-for-3-august-2023/\">Community Team Meeting Agenda for 3 August, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/08/02/recap-inaugural-nextgen-pilot-events/\">Recap: Inaugural NextGen Pilot Events</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/whose-ticket-is-it-anyway/\">Whose ticket is it, anyway?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/proposal-improve-the-editor-tech-workflow-for-major-releases/\">Proposal: improve the editor tech workflow for major releases</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/a-week-in-core-july-31-2023/\">A Week in Core – July 31, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/08/beyond-block-styles-part-3-building-custom-design-tools/\">Beyond block styles, part 3: building custom design tools</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/08/understand-and-use-wordpress-nonces-properly/\">Understand and use WordPress nonces properly</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-2-building-a-custom-style-for-the-separator-block/\">Beyond block styles, part 2: building a custom style for the Separator block</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/dev-chat-agenda-august-1-2023/\">Dev Chat agenda, August 2, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/08/04/summary-for-docs-team-meeting-august-1-2023/\">Summary for Docs Team meeting, August 1, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/08/01/summary-for-docs-team-meeting-jul-18-2023/\">Summary for Docs Team meeting, Jul 18, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/08/02/hosting-team-meeting-agenda-2023-08-02/\">Hosting Team meeting agenda 2023-08-02</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/08/03/matrix-chat-summary-august/\">Matrix chat Summary – August 3, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/31/last-week-openverse-2023-07-24-2023-07-31/\">A week in Openverse: 2023-07-24 – 2023-07-31</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/28/openverse-monthly-priorities-meeting-2023-08-02/\">Openverse Monthly Priorities Meeting 2023-08-02</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/08/01/performance-chat-summary-25-july-2023-2/\">Performance Chat Summary: 1 August 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/01/core-performance-team-update-july-2023/\">Core Performance Team Update: July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/07/24/tackling-team-challenges-together/\">Tackling team challenges together</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/31/plugin-review-team-31-jul-2023/\">Plugin Review Team: 31 Jul 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/03/cross-locale-project-translation-editor-request-5/\">Cross-Locale Project Translation Editor Request</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/02/adding-error-checks-at-translate-wordpress-org/\">Adding error checks at translate.wordpress.org</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/08/02/agenda-weekly-polyglots-chat-august-2-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – August 2, 2023 (13:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/08/agenda-for-august-3rd-support-meeting-2/\">Agenda for August 3rd Support Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/support/2023/07/summary-for-july-27th-support-meeting/\">Summary for July 27th Support Meeting</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/28/sustainability-chat-summary-july-28-2023/\">Sustainability Chat Summary, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/31/test-team-update-31-july-2023/\">Test Team Update: 31 July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/07/31/hallway-hangout-extending-blocks-with-custom-design-tools/\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/08/01/themes-team-update-august-01-2023/\">Themes team update August 01, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/training-team-meeting-recap-1st-august-2023/\">Training Team Meeting Recap – 1st August 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/03/introducing-the-training-team-guide-program/\">Introducing the Training Team Guide Program!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/02/announcing-the-first-learn-wordpress-course-cohort/\">Announcing the first Learn WordPress Course Cohort.</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/08/01/xpost-whats-new-on-learn-wordpress-in-july-2023/\">X-post: What’s new on Learn WordPress in July 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-add-tables-to-your-site/\">How to add tables to your site</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-global-variables\">Common WordPress APIs: Global Variables</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-11\">WP dev livestream: Sendig block theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%E3%83%95%E3%83%AB%E3%82%B5%E3%82%A4%E3%83%88%E7%B7%A8%E9%9B%86%E3%81%A7%E5%AE%9F%E9%9A%9B%E3%81%AB%E3%82%B5%E3%82%A4%E3%83%88%E3%82%92%E4%BD%9C%E3%81%A3%E3%81%A6%E3%81%BF%E3%82%88%E3%81%86%EF%BC%81\">フルサイト編集で実際にサイトを作ってみよう!</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=contributing-to-the-wordpress-community-team-events-and-roles\">Contributing to the WordPress Community Team: Events and Roles</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=hallway-hangout-extending-blocks-with-custom-design-tools\">Hallway Hangout: Extending blocks with custom design tools</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-start-contributing-to-the-wordpress-core\">How to start contributing to the WordPress Core</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=common-wordpress-apis-internationalization\">Common WordPress APIs: Internationalization</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wp-dev-livestream-sendig-block-theme-10\">WP dev livestream: Sendig block theme</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Aug 2023 19:29:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WPTavern: WordCamp Asia 2024 Opens Call for Speakers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147494\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wptavern.com/wordcamp-asia-2024-opens-call-for-speakers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2689:\"<p>WordCamp Asia 2024 is happening in Taipei, Taiwan, next year from March 7-9, at the <a rel=\"noreferrer noopener\" href=\"https://www.ticc.com.tw/wSite/mp?mp=2\" target=\"_blank\">Taipei International Convention Center (TICC)</a>. With the dates locked in and venue secured, organizers have now opened the <a href=\"https://asia.wordcamp.org/2024/call-for-speakers/\">call for speakers</a>. The event will feature three days of talks, workshops, and networking events, and organizers expect more than 2,000 attendees.</p>\n\n\n\n<p>Talks will be given in English and there will be four different formats for sessions:</p>\n\n\n\n<ul>\n<li>Long Talks: 40 minutes total (30 minutes for talk + 10 minutes for Q&amp;A)</li>\n\n\n\n<li>Lightning Talks: 10 minutes total (10 minutes for talk only. No Q&amp;A)</li>\n\n\n\n<li>Panel Discussions: Approximately 60 minutes with Q&amp;A</li>\n\n\n\n<li>Workshops: 90 minutes up to half a day</li>\n</ul>\n\n\n\n<p>WordCamp Asia&#8217;s organizers suggested nearly two dozen acceptable topics across a wide range of disciplines, including accessibility, SEO, marketing, Web3, AI, security, case studies, and more. They are especially &#8220;interested in hearing about diverse topics and inspirational stories. Topics such as trends, new approaches, and upcoming changes in related software and WordPress itself will be encouraged.&#8221;</p>\n\n\n\n<p>The call for speakers includes those who are hoping to host or join a panel discussion or host a workshop. Speakers do not have to be experienced at public speaking to be selected for WordCamp Asia. Those who do not have videos of previous talks can record a 5-10 minute video talking about their topic and link to it in the speaker form.</p>\n\n\n\n<p>WordCamp Asia has launched an <a href=\"https://asia.wordcamp.org/2024/underrepresented-speaker-support-initiative/\">Underrepresented Speaker Support Initiative</a> alongside this call for speakers with the goal of removing financial barriers for speakers. The program calls on companies to invest in creating a more diverse, equitable, and inclusive tech community by sponsoring underrepresented speakers, helping them practice their talks, and promoting the cause.</p>\n\n\n\n<p>The event&#8217;s organizers are also <a href=\"https://asia.wordcamp.org/2024/get-involved-with-wordcamp-asia-2024/\">calling for sponsors, media partners, and volunteers</a>. Prospective speakers are limited to two presentation submissions and can also indicate if they would be willing to be selected as a backup speaker. Applications will close on September 30, 2023. Speakers will be notified about the outcome of the selection process in November, followed by speaker announcements in December.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Aug 2023 04:12:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"BuddyPress: BuddyPress 12.0.0-beta1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=330655\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://buddypress.org/2023/08/buddypress-12-0-0-beta1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9511:\"<p>Dear contributors, BP Plugin &amp; BP Theme developers,</p>\n\n\n\n<p><strong><a href=\"https://downloads.wordpress.org/plugin/buddypress.12.0.0-beta1.zip\">BuddyPress 12.0.0-beta1</a></strong> is finally available for testing! <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3c4-200d-2640-fe0f.png\" alt=\"?‍♀️\" class=\"wp-smiley\" /> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3d6.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<ul>\n<li>Please note the plugin is <strong>still in development</strong>, so we recommend running this beta release on a <strong>testing site</strong>.</li>\n\n\n\n<li>Please note BuddyPress 12.0.0 <a target=\"_blank\" href=\"https://bpdevel.wordpress.com/2023/02/10/wordpress-required-version-update-5/\" rel=\"noreferrer noopener\"><strong>will require at least WordPress 5.8</strong></a>.</li>\n</ul>\n\n\n\n<p>You can test <a href=\"https://downloads.wordpress.org/plugin/buddypress.12.0.0-beta1.zip\">BuddyPress 12.0.0-beta1</a> in 4 ways :</p>\n\n\n\n<ul>\n<li>Try the <a target=\"_blank\" href=\"https://wordpress.org/plugins/bp-beta-tester/\" rel=\"noreferrer noopener\">BP Beta Tester</a> plugin.</li>\n\n\n\n<li><a href=\"https://downloads.wordpress.org/plugin/buddypress.12.0.0-beta1.zip\">Download the beta here (zip file)</a>.</li>\n\n\n\n<li>Check out our SVN repository: <code>svn co https://buddypress.svn.wordpress.org/trunk/</code></li>\n\n\n\n<li>Clone our read-only Git repository: <code>git clone git://buddypress.git.wordpress.org/</code></li>\n</ul>\n\n\n\n<p><strong>The current target for final release is: October 30, 2023. </strong>Considering the major change we’re introducing with this release, we decided to plan for a <strong>3 months beta testing period</strong> to:</p>\n\n\n\n<ul>\n<li>leave enough time for BuddyPress plugin &amp; theme authors to adapt their code to our new BP Rewrites API.</li>\n\n\n\n<li>Update our existing add-ons to demonstrate the changes needed for optimum 12.0 compatibility (e.g., <a href=\"https://wordpress.org/plugins/bp-attachments/\">BP Attachments</a> &amp; <a href=\"https://wordpress.org/plugins/bp-search-block/\">BP Search Block</a>)</li>\n\n\n\n<li>Explain how the new code affects <a rel=\"noreferrer noopener\" href=\"https://github.com/buddypress/buddypress/tree/master/docs/developer#buddypress-add-ons-handbook\" target=\"_blank\">ways to extend BuddyPress from now on</a>, and <a rel=\"noreferrer noopener\" href=\"https://github.com/buddypress/buddypress/tree/master/docs/user#user-handbook\" target=\"_blank\">document as much as we can</a> the progressive <a rel=\"noreferrer noopener\" href=\"https://buddypress.org/tag/feedback/\" target=\"_blank\">BuddyPress reboot</a> that we’re starting with 12.0.0.</li>\n\n\n\n<li>Identify potential issues or improvements for this release and the <a rel=\"noreferrer noopener\" href=\"https://buddypress.org/2023/07/bp-classic-1-0-0/\" target=\"_blank\">BP Classic add-on</a> which neutralizes the BP Rewrites API and ensures 12.0.0 backwards compatibility with plugins &amp; themes that are not ready yet for this API.</li>\n</ul>\n\n\n\n<p><strong>More than ever in BuddyPress history</strong>, <strong>testing for bugs is the key to a safe upgrade</strong>. It’s the main reason we actually package beta/RC versions. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f449.png\" alt=\"?\" class=\"wp-smiley\" /> Please, with the goal of making this a smooth transition for our end-users, give us a bit of your time to ensure your specific theme or plugin works with this pre-release. If you find something weird, please report it on <a rel=\"noreferrer noopener\" href=\"https://buddypress.trac.wordpress.org/newticket\" target=\"_blank\">BuddyPress Trac</a>, post a reply to <a href=\"https://buddypress.org/support/topic/lets-prepare-the-buddypress-12-0-0-next-major-release/\">this support topic</a> or get in touch with us on our <a rel=\"noreferrer noopener\" href=\"https://wordpress.slack.com/messages/buddypress\" target=\"_blank\">WordPress.org Slack channel</a>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">One massive change &amp; around 60 other changes to expect in 12.0.0</h2>\n\n\n\n<p>You can check out <a target=\"_blank\" href=\"https://buddypress.trac.wordpress.org/query?status=closed&group=resolution&milestone=12.0.0\" rel=\"noreferrer noopener\">this report</a> on Trac for the full list of them. Below are the ones we believe will require your attention a lot and improve your BuddyPress experience in the most significant way.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/270d.png\" alt=\"✍\" class=\"wp-smiley\" /><strong> The BP Rewrites API </strong><strong>(the</strong><strong> massive change!)</strong></p>\n\n\n\n<blockquote class=\"wp-block-quote is-style-default\">\n<p><em>BP 12 is replacing the transmission in the car</em></p>\n<cite><a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/dcavins/\" rel=\"nofollow\">@dcavins</a> on April 17, 2023.</cite></blockquote>\n\n\n\n<p><a rel=\"noreferrer noopener\" href=\"https://buddypress.trac.wordpress.org/ticket/4954\" target=\"_blank\">This is a 10-year-old issue</a> we are solving in BuddyPress 12.0.0, initializing a reboot was the right opportunity to finally comply with the WordPress way of generating rules to analyze requested URLs and route the visitor to the right site content: the <a rel=\"noreferrer noopener\" href=\"https://developer.wordpress.org/apis/rewrite/\" target=\"_blank\">WP Rewrite API</a>. If we’ve tried to minimize as much as we could the needed changes for BuddyPress plugins and themes, 2 constraints couldn’t be worked around:</p>\n\n\n\n<ul>\n<li>WordPress fully analyzes a URL later in the load process than our Legacy URL parser does its job</li>\n\n\n\n<li>Supporting plain permalinks &amp; customizable slugs required us to completely rethink the way we build BuddyPress URLs</li>\n</ul>\n\n\n\n<p>That being said, the impressive benefits will outweigh the small efforts we all need to accomplish in the coming 3 months:</p>\n\n\n\n<ul>\n<li>Site Administrators will now have a full control over <strong>all</strong> BuddyPress-generated URLs. They can choose slugs (or portions of URLs) that reflect their community, maybe using localized language or special terms that are more meaningful to their members. <strong>All</strong> also means, the URLs generated by 3rd party BuddyPress Add-ons using the BP Rewrites API.</li>\n\n\n\n<li>BuddyPress will be fully compatible with plain URL permalinks.</li>\n\n\n\n<li>Parsing BuddyPress URLs is <strong>faster</strong>, <strong>more reliable, extensible, testable and fully compliant</strong> with WordPress best practices.</li>\n\n\n\n<li>We now have a solid foundation to <a target=\"_blank\" href=\"https://buddypress.org/2023/05/what-new-features-will-be-coming-to-buddypress/\" rel=\"noreferrer noopener\">dream bigger</a>!</li>\n</ul>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f510.png\" alt=\"?\" class=\"wp-smiley\" /><strong> A new community visibility level: members only</strong></p>\n\n\n\n<p>We’ve heard from BuddyPress end-users that being able to easily restrict access to their community is a necessary feature. And thanks to the BP Rewrites API, we are able to reach this standard. With this first iteration, a site admin can now choose whether the community is fully public or is only accessible by logged-in members. In future versions, we hope to add granularity to this choice, so that community administrators can choose to highlight their members but share activities only inside the community “gates” for example.&nbsp;</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9d9-200d-2642-fe0f.png\" alt=\"?‍♂️\" class=\"wp-smiley\" /><strong> More than 80 deprecated functions &amp; 2 removals</strong></p>\n\n\n\n<p>12.0.0 deprecates more functions than any of our previous releases (The 1.5 version, which was the previous “leader”, deprecated 40 functions). 26 of these deprecated functions was actually moved into the BP Classic plugin as they were specific to our legacy way of building, parsing and analyzing URLs.</p>\n\n\n\n<p>The BP Default theme and our BP Legacy widgets have also moved to BP Classic, the future is blocks! </p>\n\n\n\n<p><strong>This is important: you really need to test BuddyPress 12.0.0 to get ready for it!</strong></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-1 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button is-style-outline\"><a class=\"wp-block-button__link has-text-color has-text-align-center wp-element-button\" href=\"https://downloads.wordpress.org/plugin/buddypress.12.0.0-beta1.zip\"><strong>Test BuddyPress 12.0.0-beta1</strong></a></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f91d.png\" alt=\"?\" class=\"wp-smiley\" /> Props <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/dcavins/\" rel=\"nofollow\">@dcavins</a> for his review &amp; great improvements about this announcement post.</p>\n\n\n\n<p><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f579.png\" alt=\"?\" class=\"wp-smiley\" /> <em>Happy testing!</em> <em>Thanks for your help!</em></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p class=\"has-text-align-right\"><em>Thanks to BuddyPress: get together safely, </em><strong><em>in your own way</em></strong><em>, in WordPress.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2023 22:16:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: WordPress Remembers: A Memorial To Those We Have Lost\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147472\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/wordpress-remembers-a-memorial-to-those-we-have-lost\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2065:\"<p>WordPress is honoring contributors the community has lost over the years through a new memorial page called <a href=\"https://wordpress.org/remembers/\">WordPress Remembers</a>: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>WordPress dedicates this page to the memory of those we&#8217;ve lost. They&#8217;ve shaped our project and enriched our community. As we remember their passion and commitment to WordPress and open source software, we celebrate their spirit.</p>\n\n\n\n<p>Forever in our hearts, their legacy endures through every line of code and every user they&#8217;ve impacted.</p>\n</blockquote>\n\n\n\n<p>The page lists code and community contributors who left a lasting impact on the WordPress project, and links to their profiles and external blogs and memorial pages. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2204\" height=\"1278\" />\n\n\n\n<p>&#8220;As WordPress continues through the decades, we have to deal with all parts of life, including death,&#8221; WordPress co-creator Matt Mullenweg <a href=\"https://twitter.com/photomatt/status/1686795699093135360\">said</a>, introducing the page on Twitter. &#8220;As a community, we now have a memorial place we can remember and honor those who contributed to WordPress but are no longer part of this world.&#8221; In a followup tweet he added, &#8220;I will be on this page someday.&#8221;</p>\n\n\n\n<p>For a software project that is 20+ years old, with <a href=\"https://wordpress.org/news/files/2023/05/2022-Annual-Survey-Final.pdf\">an aging contributor base</a>, departures from this world will soon become more common. Visiting this memorial page is a heart gripping experience if you had the privilege of knowing any of these beloved contributors. It&#8217;s sobering to consider the impact and legacy of one&#8217;s investments in WordPress, but this elegantly designed memorial calls those questions to mind.</p>\n\n\n\n<p>If you know of someone who is missing from this page, you can contact <a href=\"mailto:memorials@wordpress.org\">memorials@wordpress.org</a> and volunteers will add them.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2023 20:59:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"Post Status: What is Coaching &amp; What Are Key Times to Have a Coach with Kelly Gallagher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=150057\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://poststatus.com/what-is-coaching-what-are-key-times-to-have-a-coach-with-kelly-gallagher/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47846:\"<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">In this podcast episode, <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> introduces his professional coach, <a href=\"https://www.linkedin.com/in/coachkellygallagher\">Kelly Gallagher</a>, to discuss the role of coaching in personal and professional growth. They explore the difference between coaching and therapy and how they can complement each other. They highlight the value of coaching for high achievers and how it can help with career changes, improving performance, and enhancing communication skills. Cory shares his personal experience with coaching and expresses its positive impact on his life.</p>\n\n\n\n<p class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"><strong>Episode Highlights:</strong></p>\n\n\n\n<ul type=\"video\" class=\"wp-embed-aspect-16-9 wp-has-aspect-ratio\">\n<li>[00:00:00] <strong>The role of coaching and introduction of Kelly Gallagher-</strong>Cory introduces Kelly Gallagher as his professional coach and discusses their working relationship for four and a half years.</li>\n\n\n\n<li>[00:01:25] <strong>Kelly&#8217;s background in business development and coaching training-</strong> Kelly shares her background in business development and her coaching journey, including her training and pursuit of a master&#8217;s degree.</li>\n\n\n\n<li>[00:07:38] <strong>The difference between coaching and therapy, and the value of coaching for high achievers</strong>-Cory and Kelly discuss the definition of coaching, the distinction between coaching and therapy, and the importance of coaching for high achievers.</li>\n\n\n\n<li>[00:11:39] <strong>The distinction between therapy and coaching-</strong>Discussion on the differences between therapy and coaching and how they complement each other.</li>\n\n\n\n<li>[00:12:41] <strong>The value of having a coach for high achievers-</strong>Exploration of the benefits of coaching for high achievers and the importance of self-awareness.</li>\n\n\n\n<li>[00:13:55]<strong> Times when people seek coaching-</strong>Identification of common situations that lead individuals to actively seek coaching, such as career conflicts, the desire for personal growth, and the need for support during organizational changes.</li>\n\n\n\n<li>[00:23:31] <strong>The role of coaching and the importance of ICF certification-</strong>Discussion on the role of coaching, the significance of ICF certification, and the difference between coaching and therapy.</li>\n\n\n\n<li>[00:28:34] <strong>The value of having a coach for high achievers-</strong>Exploration of the benefits of coaching for high performers and the potential negative stigma associated with coaching as a remedial tool.</li>\n\n\n\n<li>[00:31:58] <strong>Coaching for entrepreneurs-</strong>The essentiality of coaching for entrepreneurs, particularly in navigating change, making big decisions, and improving performance.</li>\n\n\n\n<li>[00:34:24]<strong> The role of coaching and seizing opportunities-</strong>Cory reflects on the importance of having a coach and making the most of opportunities in business.</li>\n\n\n\n<li>[00:35:18] <strong>The importance of personal happiness and joy in work</strong>-Kelly discusses the significance of finding joy and personal happiness in one&#8217;s work and how it affects performance.[00:37:09] <strong>The passion for helping others and personal growth-</strong>Kelly shares her passion for helping others find personal growth in coaching and how it is more rewarding than pure sales.</li>\n</ul>\n\n\n\n<div class=\"wp-block-group is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-columns sponsor has-theme-palette-8-background-color has-background is-layout-flex wp-container-11\" id=\"StellarWP\">\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"StellarWP has-theme-palette-1-color has-text-color wp-block-heading\" id=\"Sponsor\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> Sponsor: <span><a href=\"https://poststat.us/elementor\" rel=\"sponsored nofollow\">Elementor</a></span></h3>\n\n\n\n<p><strong>Elementor </strong>enables web creators to build professional, pixel-perfect websites with an intuitive visual builder. Quickly create amazing websites for your clients or your business with complete control over every piece, without writing a single line of code. Join <a href=\"https://elementor.com/community/\">a vast community of web creators</a> from all around the world who deliver exceptional websites using Elementor.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-vertically-aligned-top is-layout-flow\"><div class=\"wp-block-image elementor-logo\">\n<img src=\"https://poststatus.com/wp-content/uploads/2022/08/Elementor-Logo-Symbol-Blue-150x150.png\" alt=\"Elementor\" class=\"wp-image-104033\" width=\"150\" height=\"150\" title=\"Elementor Logo\" />Elementor</div></div>\n</div>\n</div></div>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"?\" class=\"wp-smiley\" /> Mentioned in the show<strong>:</strong></h3>\n\n\n\n<ul>\n<li><a href=\"https://obcc.utdallas.edu/coaching/\">University of Texas at Dallas Coaching Program</a></li>\n\n\n\n<li><a href=\"https://coachingfederation.org/\">International Coach Federation</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading eplus-wrapper\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"https://twitter.com/salesrxcoaching\">Kelly Gallagher</a>  (Executive Coach, <a href=\"https://gallagherexecutivecoachingpartnerships.com/\">Gallagher Executive Coaching Partnerships</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"?\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"wp-block-heading eplus-wrapper\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<p>Cory Miller (00:00:00) &#8211; Hey everybody. Welcome back to Post Status Draft. I&#8217;ve got a special guest today and I&#8217;m excited because I&#8217;ve worked with this awesome person professional for I think it&#8217;s been five years now. Four years? No, probably four and a half years now, Kelly. And. So back when I had just sold items, I was working the, you know, my job at trying to transition team, get some things done in the year after we had sold and I was starting to percolate. Okay, I&#8217;ve got this huge career change coming up, this huge business, whatever change in my professional life. And I sought out a coach and found Kelly Gallagher. So she&#8217;s my professional coach for four and a half years. We&#8217;re going to have a great conversation talking about coaching times when it&#8217;s so helpful to have a coach. And I&#8217;ll share personal experiences, too, but you&#8217;re in for a treat today. So Kelly, thanks so much for being on the podcast.</p>\n\n\n\n<p>Kelly Gallagher (00:01:02) &#8211; Thank you for having me. I&#8217;ve been watching some of your podcasts, and I&#8217;m just honored to be the subject of one of them.</p>\n\n\n\n<p>Kelly Gallagher (00:01:07) &#8211; So thank you.</p>\n\n\n\n<p>Cory Miller (00:01:09) &#8211; I often refer to Kelly as my secret weapon because a lot of the big things that have happened in the last five years, for sure in my life I&#8217;ve rehearsed, practiced, talked through all of these with Kelly. So, Kelly, tell us a little bit about your background.</p>\n\n\n\n<p>Kelly Gallagher (00:01:25) &#8211; Um, Cory, I came from a business development specialty within corporate America, specifically pharmaceuticals and the medical industry, and also diagnostics and lab testing. So I was a road warrior. I was out closing deals and my responsibilities escalated and escalated to the point where. Um, the last ten years, I was with a diagnostic lab, and I was also training other salespeople. I was interviewing them, hiring them and then coaching them. But I didn&#8217;t know I was coaching because I wasn&#8217;t sure even what coaching was. I wanted to take over the training department. So I was told, Well, you have no experience, even though I was already doing it. So I challenged and said I would like to go back and get my masters.</p>\n\n\n\n<p>Kelly Gallagher (00:02:16) &#8211; And I entered the coaching program, which is a just gold standard industry. I don&#8217;t know. It turned out to be one of the best. And so I entered that. And then while I was doing it, I thought, why not just get a master&#8217;s in business administration? Because I already know these things. So I went to school for five years and it was the best five years of my life. Um, I learned that I love to learn, and I think that may be what separates good coaches from great coaches. Is that. Constant wanting to move the bar up, that constant going to class mentality to be at another level. And that&#8217;s what&#8217;s really defined my career. There&#8217;s not really a time of the year when I&#8217;m not in continuing education and it&#8217;s my passion. I just want to be a master of my craft. So that was my journey. The interesting sidebar is I was told you can do all this, but if your sales performance drops, we&#8217;re done. We&#8217;re not paying. I said, okay.</p>\n\n\n\n<p>Kelly Gallagher (00:03:29) &#8211; But the more I studied coaching and communications, the higher myself through. And there&#8217;s actually a correlation between the two. It doesn&#8217;t seem like there would be, but I learned how to really listen. I was a good listener to begin with, but I became just a great listener and observer of behavior. And I also learned how to challenge people. So if a buyer told me, yes, yes, I&#8217;m definitely going to get the contract signed. And I sensed a hesitancy, I would call them out and go, you know, you&#8217;re sending one thing, but I&#8217;m hearing something else. It sounds like you&#8217;re still uneasy. And a lot of times by doing that, I could tease out that they weren&#8217;t going to buy it and we can have further discussion. So the coaching actually when I finished up. My sales career. It was as far as I could take it, but I owe it all to the coaching training.</p>\n\n\n\n<p>Cory Miller (00:04:32) &#8211; That&#8217;s awesome. Now, I know you have ICF credentials and all that and you can share a little bit about what ICF is, but so I know you are very involved there.</p>\n\n\n\n<p>Cory Miller (00:04:45) &#8211; Have done there&#8217;s so many regular like you said, I do a lot of work with mental health practitioners and there&#8217;s such a very, I would say regulated, but no like very intense and purposeful way to do therapy. A lot of guidelines, a lot of regulations, a lot of licensure things, ethical consideration, continuing. Ed But coaching has so much of that too. And that&#8217;s where ICF comes into yes.</p>\n\n\n\n<p>Kelly Gallagher (00:05:12) &#8211; And unfortunately, there&#8217;s not a specific license. I wish there was, but because there isn&#8217;t, the consumer has to really be discerning. And one way to start is that ICF because it&#8217;s the gold standard and for coach is not doing continuing education and involved with ICF. I don&#8217;t know. Chances are there will be less rigor to what they&#8217;re going to be able to do. It&#8217;s not that they wouldn&#8217;t be good coaches.</p>\n\n\n\n<p>Cory Miller (00:05:40) &#8211; Yeah, I think the ICF stuff is strong. Sometimes I feel like it&#8217;s a little bit too limiting, but I go, Gosh, it&#8217;s so good because it&#8217;s trying to really professionalize the coaching industry where anybody can just say, Oh, I&#8217;m my coach, I&#8217;m a life coach, whatever it is.</p>\n\n\n\n<p>Kelly Gallagher (00:05:57) &#8211; People just hang out a shingle and say, Boom, magic, I&#8217;m a coach. I two think it can be limiting, but I offer a bit of a hybrid because I have so much business experience. I&#8217;ll often tell my clients, Hey, I&#8217;m going to shift out of coaching if you want. Is it okay if I put on my business act and they almost never had anyone say no in interviews? And so then I&#8217;m able to interject a little, you know what this happened to blah, blah, blah. And I think that&#8217;s what differentiates me from other coaches. But the ICF standards are just critical. And the other thing about the ICF is you have to have 250 hours of continuing education to keep getting the licensure. That&#8217;s not a license to keep, you know, being indoors. And so that really raises the bar and enables the coach to really grow because you&#8217;re constantly taking a course. Yeah.</p>\n\n\n\n<p>Cory Miller (00:07:02) &#8211; So super, super strong. By the way, if you&#8217;re listening, you want to look if the coach has ICF certifications and all that, that&#8217;s really important, rigorous, rigorous work that they do to keep that up means to me it goes through taking it very seriously their profession.</p>\n\n\n\n<p>Cory Miller (00:07:19) &#8211; So Kelly, what is a coach? We&#8217;re going to spend some time talking about the times in which coach has been so, so valuable to your clients, to me, and we&#8217;re going to share experiences around that. But first, I kind of want to get a baseline of like, what is a coach?</p>\n\n\n\n<p>Kelly Gallagher (00:07:38) &#8211; Great question. Mean a coach. I had this conversation this morning at the pool at 5 a.m. Someone said, Oh, you&#8217;re going to coach. They just want content. I said, No, that&#8217;s not really what coaching is. I&#8217;m not really delivering content. I think a coach is someone that walks on a journey with a professional who wants to raise the bar. Um, it can be a life coach too. So then you&#8217;re walking the journey with an individual who has an area of life where they want to improve or progress. And that&#8217;s still the same formula for going through the coaching process, whether it be an executive or whether it be. Someone who wants to increase communication with their husband or wife.</p>\n\n\n\n<p>Cory Miller (00:08:25) &#8211; So, yeah. And part of how we were working together when we first started working together was I was going to the same school you went to, which is fantastic. University of Texas and Dallas and their coaching program is incredible. And being mentored by you. And because I was getting asked when when I left our teams and I was trying to do my own thing, I thought, okay, it&#8217;s going to be coaching People go, What is it, Coach? What do you do? And I was like, Oh gosh, I&#8217;m struggling with these. But it&#8217;s so much that it&#8217;s that walking alongside a person on a journey and I like what you added to it, is like they want to raise the bar, they want to do something more. And, you know, I have so much reflected about my business entrepreneurial career for the last 15 years ago. If I had a coach from the beginning, it would have been so much better in many ways. Not just success, success for sure, but also health clarity.</p>\n\n\n\n<p>Kelly Gallagher (00:09:23) &#8211; It&#8217;s funny you say that, Cory, because even 20 years ago when I was in pharmaceuticals and I was doing very well, had I had a coach, I would have been a rock star because there were rough edges that I couldn&#8217;t see. You can&#8217;t see them in yourselves the way someone else can who&#8217;s actively listening to you.</p>\n\n\n\n<p>Cory Miller (00:09:43) &#8211; Yeah. Well, and you know, the parallel we always give is sports. You know the best. Greatest of all time. Athletes have coaches and have people around them. Like you just assume they wake up and they&#8217;re just as good naturally. No, they work on their craft. And I think about that so much. Like, I know you work with a lot of high achievers and oftentimes so many of the entrepreneurs I&#8217;ve worked with very high achievers too. I&#8217;ve had the pleasure of having people on my team big time, high achievers. And you just go, like, if you really want to do well in what you&#8217;re doing, you need to have somebody that&#8217;s on your side.</p>\n\n\n\n<p>Cory Miller (00:10:23) &#8211; Nobody does it alone. I think that&#8217;s the fast that we perpetuate in our culture and especially in business, like with entrepreneurs, is like, Oh, I&#8217;m the rockstar. I do this by myself, that you got these icons out there. You know, Steve Jobs is the one you hear over and over and over 100,000 times. You go, He didn&#8217;t do it alone. No, there&#8217;s no way you can do it alone. And having someone in your corner that&#8217;s helping you perform at the highest level is so critical.</p>\n\n\n\n<p>Kelly Gallagher (00:10:54) &#8211; Yes, I agree. And, you know, oftentimes people will also say, well, isn&#8217;t it like therapy? I would call it therapy. Ten x. Because therapy&#8217;s great and I think everyone should go through that process at some time in their life. I really believe in it. But at some point it&#8217;s limited because it&#8217;s just keeps moving into the past and feelings and often sad feelings. Whereas coaches moving the person forward so high achievers get bored in therapy after a while, after a while, and they might go back and forth to therapy.</p>\n\n\n\n<p>Kelly Gallagher (00:11:34) &#8211; But generally they find that coaching helps them because it&#8217;s goal oriented.</p>\n\n\n\n<p>Cory Miller (00:11:39) &#8211; Yeah, well, and I know there&#8217;s a big distinction between therapy and coaching and really, you know, really try to their distinct things. And oftentimes probably you have taught this mentioned like therapy is looking back, coaching is looking forward. Is that how you kind of see that?</p>\n\n\n\n<p>Kelly Gallagher (00:11:56) &#8211; Yes. And you know, as a coach and a credentialed coach, I&#8217;m ethically bound if I feel like someone continually goes into therapy. Waters and themes, um, I&#8217;m bound to refer them on to therapists till they are more stabilized. And then oftentimes a lot of my clients are in therapy and coaching together. They really work well hand in hand.</p>\n\n\n\n<p>Cory Miller (00:12:22) &#8211; Yes. In fact, for the bulk of the time right now, I am not currently seeing a counselor, however, for the last see two months, but for the bulk of the time we&#8217;ve worked together have had a counselor and a coach. So I think their yin yang, their.</p>\n\n\n\n<p>Kelly Gallagher (00:12:41) &#8211; Right. And the people that come to me and have had some therapy, even if it was limited, they have just a little bit more self awareness.</p>\n\n\n\n<p>Kelly Gallagher (00:12:49) &#8211; So coaching progresses faster.</p>\n\n\n\n<p>Cory Miller (00:12:52) &#8211; Yeah. If you&#8217;re doing your work to.</p>\n\n\n\n<p>Kelly Gallagher (00:12:55) &#8211; Because other otherwise get clients. Sometimes we&#8217;ll say, Well, what does it matter how I&#8217;m feeling about this? Well, it matters a lot because, you know, your heart is just as involved in these decisions and actions and creative things you&#8217;re asking yourself to do as the frontal lobe of your brain. So they are connected.</p>\n\n\n\n<p>Cory Miller (00:13:14) &#8211; Yeah. Okay. So we talked about what coaching is a little bit we talked about the distinctions, therapy versus coaching and how they&#8217;re additive and can exist together. And in fact, or even better sometimes, oftentimes, especially in my experience, I would say. Well, I&#8217;m curious, Kelly So I know my own personal experience is related to our coaching professional relationship. But I&#8217;m curious, what are the times you you see people getting into the meat of this kind of conversation between us is like, what are those times when people go, okay, they&#8217;re thrust out to go actively look for a coach and end up, you know, in a in a room or a meeting with you.</p>\n\n\n\n<p>Kelly Gallagher (00:13:55) &#8211; I would say that generally there&#8217;s some type of struggle. It can be a conflict at work. That&#8217;s a huge one because that dips into, well, do I want a career change? And sometimes people come and they don&#8217;t know what they want. They&#8217;re just not happy. Um, people who want to progress with that and find meaning and integrate what they&#8217;re learning about themselves will come to coaching because that process. It really it&#8217;s like turbocharging the job search and turbocharging people to take interviews and move on and move up without really any kind of formal instruction to just that self-awareness that it builds. So that&#8217;s one of the big ones. Um.</p>\n\n\n\n<p>Cory Miller (00:14:44) &#8211; Let&#8217;s talk about struggle for a second. So struggle back to that. So is that so you mentioned a couple of factors there. I want to hit both sides. One is maybe I need to make a change, like move out of what I&#8217;m doing. But there&#8217;s another one, which is maybe I want to get promoted or have been promoted or, you know, within an organization to and I&#8217;m curious your experiences around around that too.</p>\n\n\n\n<p>Cory Miller (00:15:10) &#8211; So I like that it starts with like there&#8217;s some kind of struggle and they&#8217;re seeking outside perspective and help support with that. But it starts with some things they&#8217;re trying to change and wrestling against. Sounds like.</p>\n\n\n\n<p>Kelly Gallagher (00:15:24) &#8211; Right? And many times, you know, when you&#8217;re in a new position or you&#8217;re in a position where you are striving to do something else within that company, you will conform to their expectations and almost wear a mask. The to the degree that you lose something in the translation because then you&#8217;re not really connecting with your creative side or your problem solving side or your heart. And so a lot of work can be done to find that balance for people. The other thing that touches on is fear of failure. Your fear of failure is. It&#8217;s just a sweet spot because so many. Points of wanting to change. If we whittle down and we go with the client, what&#8217;s beneath that? What&#8217;s beneath that or what&#8217;s beneath that? And we get down to the core or the middle of the onion. It&#8217;s fear of failure.</p>\n\n\n\n<p>Kelly Gallagher (00:16:19) &#8211; And that&#8217;s that&#8217;s just a part of being human. No one wants to humiliate themselves or fall down. But I think, too, in our society, think about schools nowadays. Everyone&#8217;s given a trophy. Soccer, Everyone&#8217;s campaigning, trophy swimming. Everyone makes the team. No one&#8217;s not on the team. Great. So children are raised to not really fail or understand that they founded something and think in a way, I like the philosophy, but in a way I think I see a lot of young adults who come out into the world and they are terrified of not getting a trophy of not. And the reality is, in real life, you don&#8217;t get that many trophies.</p>\n\n\n\n<p>Cory Miller (00:17:06) &#8211; Yep. Well, we that was that fear of failure thing. We, we talked our last coaching session about that specifically and totally like, you know, when you&#8217;ve especially if you&#8217;ve been accustomed to winning, doing succeeding and then you hit some failures and or trying to do anything big and new, take that next job, start that new endeavor, whatever that is, and that, you know, oh, this is not a guaranteed success.</p>\n\n\n\n<p>Cory Miller (00:17:35) &#8211; So that that definitely resonates.</p>\n\n\n\n<p>Kelly Gallagher (00:17:37) &#8211; Right? And if I fail, that also relates to a further theme of then the fear of being actually seen for who you are. Um, yeah, it&#8217;s a heavy topic and it can take a while to work through, but it&#8217;s, I think most of my clients will say that&#8217;s valuable work. And it&#8217;s not that they become fearless, but I think they&#8217;re able to notice the emotion name and then kind of negotiated.</p>\n\n\n\n<p>Cory Miller (00:18:08) &#8211; Yeah, you mentioned the word emotions. And I think when I first started working with you, I didn&#8217;t I didn&#8217;t go to that realm. I was, you know, okay, more intellectual thinking process and stuff. And you&#8217;re extremely helpful with that. And probably because of some of the, you know, understandings between therapy and coaching or misunderstanding to say, I didn&#8217;t really get into that. But I think our best work has come with the emotions. Like my my definitely I&#8217;ve benefited every time we&#8217;ve talked. I&#8217;ve been better for it. However, I think the most profound times is when we get into, okay, I&#8217;m doing this thing.</p>\n\n\n\n<p>Cory Miller (00:18:48) &#8211; It&#8217;s an event, like you said, a struggle or something new or a change or something I&#8217;m preparing for. But then okay, the emotion around that and understanding that and leveraging, you know, really deep dive into that where I&#8217;m trying to improve. I can&#8217;t remember how many times you&#8217;ve said to me, okay, well they are not in this call. What is the what about you? And I was like, Oh man, doing that hard work, which is made I know it&#8217;s made me better as a professional and a leader for sure, because oftentimes you kind of redirect back to me and go, okay, well, they&#8217;re not here. Let&#8217;s talk about what this means to you, for you. And I&#8217;m always like, Well, let me take a deep breath on that one.</p>\n\n\n\n<p>Kelly Gallagher (00:19:31) &#8211; That&#8217;s a hard one. I learned that actually didn&#8217;t learn that at Utd or anywhere. I learned that as a young rep out in the field and I complain about these idiot customers. Right? And the manager told me once, he said, Turn your rearview mirror to your face.</p>\n\n\n\n<p>Kelly Gallagher (00:19:48) &#8211; And I didn&#8217;t. He goes, Now look at that. That&#8217;s the person that would have to change. The client&#8217;s not going to change. And it was the most profound thing. It kind of hurt my feelings, but it was so true.</p>\n\n\n\n<p>Cory Miller (00:20:01) &#8211; Well, I&#8217;ve talked through everything with you from partner team issues, all that. And it&#8217;s been so helpful because I think oftentimes kind of thinking, okay, yeah, they&#8217;ve got to change. There&#8217;s something with them. And the real work, profound and deep, that continues to get deeper is what does that mean for me about me? What do do I need to change something and what is that? And those are the times really in reflective work that I go, okay. And more and more I think I&#8217;m getting it. Or I go, okay, So something I&#8217;m not aware about myself potentially pointing outwards and then going, I kind of need to turn the rearview mirror back to myself.</p>\n\n\n\n<p>Kelly Gallagher (00:20:46) &#8211; Back to your face? Yes.</p>\n\n\n\n<p>Cory Miller (00:20:48) &#8211; It&#8217;s not the easiest thing to do, but I&#8217;m glad you do it.</p>\n\n\n\n<p>Kelly Gallagher (00:20:50) &#8211; It&#8217;s not the easiest thing to do. And in periods of conflict or intense conversations with bosses or calling people, you&#8217;re supervising, it&#8217;s extremely hard to stop yourself and say, wait a minute, who am I? And yeah, it&#8217;s it&#8217;s really, really hard. But I think as people progress in coaching, they become almost a coach within themselves.</p>\n\n\n\n<p>Cory Miller (00:21:16) &#8211; Yes. Yes. I can hear you quite a bit doing that.</p>\n\n\n\n<p>Kelly Gallagher (00:21:21) &#8211; Yeah. Oh yeah. So that would be my goal is that when I&#8217;m not there because I&#8217;m not there all the time and I don&#8217;t know of it, even though I know so much, I don&#8217;t know all of it. But my goal would be when that person&#8217;s gone for a week or they&#8217;re in a high stress situation, they&#8217;re able to somewhat coach themselves through it.</p>\n\n\n\n<p>Cory Miller (00:21:44) &#8211; Absolutely. Well, okay. So we talked about like the struggle conflict. Something&#8217;s going on there. Want to do reach something new? Maybe they&#8217;re evaluating a big change. I mean, that resonates with me. I was that&#8217;s how we kicked off our thing.</p>\n\n\n\n<p>Cory Miller (00:21:59) &#8211; It was like I was changing my profession career very substantially, knew I was going to be leaving the company I started. And, you know, okay, here&#8217;s a totally new avenue and having somebody to talk that through the fear of failure, the emotions of being an achiever, especially a high achiever, trying to do something in the world like an entrepreneur, what are some other things that you you see often in your coaching?</p>\n\n\n\n<p>Kelly Gallagher (00:22:27) &#8211; Well, I would say the other thing, the theme is some type of organizational change, because your organization, of course, they&#8217;re always changing. And there are new standards that people don&#8217;t. We talked about that before we went on tape that sometimes people don&#8217;t like change. So being able to go in and help a person challenge their assumptions about the change really recognize within themselves the any negative thinking loops or or extra baggage they&#8217;re bringing in the situation and then thrive throughout the change would be a big thing. Um, and as they go along to they learn about themselves and then to integrate that learning.</p>\n\n\n\n<p>Kelly Gallagher (00:23:12) &#8211; Back into the organization. That&#8217;s changing because change is constant. Yep. I don&#8217;t think I&#8217;ve ever been in an organization in 30 years that wasn&#8217;t doing some type of change. It&#8217;s almost never stay.</p>\n\n\n\n<p>Cory Miller (00:23:31) &#8211; It&#8217;s yeah, absolutely. Well, there&#8217;s two things I think about when we&#8217;ve worked together and what I know of coaching too. It&#8217;s it&#8217;s the word change that you said. Some change. Big change oftentimes big change. The other side of the coin for me is performance.</p>\n\n\n\n<p>Kelly Gallagher (00:23:47) &#8211; So yeah.</p>\n\n\n\n<p>Cory Miller (00:23:49) &#8211; Continual performance. So like and I think about those listening in why you won&#8217;t get you want to get coaching for yourself and your team is that performance factor like it&#8217;s an investment back into yourself or your team if you&#8217;re providing coaching. I think some great organizations, particularly in WordPress I&#8217;ve heard of because I&#8217;ve referred people to you that happen to be in WordPress. I go, Oh, I love the forward thinking of that. You&#8217;re going, it&#8217;s an investment in their people, but the performance side. So we&#8217;ve talked a lot of some about this change side.</p>\n\n\n\n<p>Cory Miller (00:24:24) &#8211; There&#8217;s something going on and how we wrestle and adapt to that change where we talk about motions and different things and then but the other side to me is like, I can&#8217;t remember how many times I call it performance, but what I think it is, is like preparation. I mean, some of the biggest deals I&#8217;ve done in five years have been rehearsed, practiced, polished, perhaps even with you. And gosh, I didn&#8217;t have that my previous ten years. And I thought, wow, I went into so many situations. I thought I had done my preparation. But doing it with you with a coach was made things so much better, I think, through that process. Kelly It also eliminated like things I wasn&#8217;t aware of, things I hadn&#8217;t thought about, and just an approach to get some, like, clarity.</p>\n\n\n\n<p>Kelly Gallagher (00:25:12) &#8211; Flirty, some big one. And I think that goes into the third bucket of communication skills. Just people sometimes come to me and in her struggle or there&#8217;s conflict or they&#8217;re going into a big sales promotion and they&#8217;re not quite sure how to go about it.</p>\n\n\n\n<p>Kelly Gallagher (00:25:29) &#8211; So that would all fall into the bucket of communication skills. And that that&#8217;s a big one. I don&#8217;t think oftentimes people think they&#8217;re coming across one way, but it&#8217;s quite different if you&#8217;re observing them. The other thing is. They, you know, like you said, you&#8217;ll rehearse. And rehearse. But when you get in that situation sometimes. Hopefully you&#8217;re primed with enough rehearsal to lean back. If you forget what you&#8217;re going to say, you can lean back into the gist of it. So I think for performance, though, it comes down to communication skills and confidence, because in selling some time it&#8217;s not what you said anyway, it&#8217;s how you said it. And you can walk in if you say it with conviction and you have that internal clarity, as you mentioned, and conviction. The little wordsmithing and nuances of it aren&#8217;t going to matter. They&#8217;re going to matter. But the big the capital A to achievement or performance is how you set it.</p>\n\n\n\n<p>Cory Miller (00:26:36) &#8211; Well, I didn&#8217;t say this in the beginning, but we we now meet twice a week and we&#8217;ve I think we&#8217;ve met twice a week for the last year or two.</p>\n\n\n\n<p>Cory Miller (00:26:44) &#8211; And that was out of, oh, I need these times. We&#8217;re kind of booking them at the front of the week and the end of the week. But oftentimes I realize so many times it&#8217;s just seeking clarity for myself and those of us who are leaders out there trying to give a clear vision to somebody else, I&#8217;ll just say it. Maybe other leaders just wake up with clairvoyant vision. I don&#8217;t. I need rehearsal. I need work. I need to bounce it off people. I need a coach to help me kind of ask questions, think, think it through. And every single time I&#8217;m better. I remember some of the biggest ones that I&#8217;ve, like, talked to you. And it&#8217;s not even one session, maybe 2 or 3. They end up talking about it. But I go, Gosh, if I hadn&#8217;t had that, I would have made so many mistakes going into that big decision or time of presentation, whatever that was. And I&#8217;m so better for like I just need to practice and realize I couldn&#8217;t just do that.</p>\n\n\n\n<p>Cory Miller (00:27:40) &#8211; I needed someone else to help me. And that&#8217;s where you&#8217;ve come in and done that. And so clarity for me is like when you say, what? When people would ask me, What&#8217;s the biggest takeaway for coaching? I go clarity and what is clarity? Build what you said confidence. And those two alone have made me a better leader. That&#8217;s why I can say, let&#8217;s just go back to the start of my career. If I&#8217;d had a coach, it started my career. Everything would have been better because I&#8217;ve been more clear, more confident.</p>\n\n\n\n<p>Kelly Gallagher (00:28:03) &#8211; Being a millionaire ten times over just had a coach because I did so many stupid things along with the good things. That you don&#8217;t know, but you do learn from failure. You do learn. Oh, and so, you know, maybe not, but I sure would have liked to have a coach. It is a perk for high performers. If if if you if it&#8217;s a if there&#8217;s an employer listening in and they&#8217;re thinking of who does that need coaching? Yes, it can be remedial, but sometimes then it&#8217;s not the employees idea.</p>\n\n\n\n<p>Kelly Gallagher (00:28:34) &#8211; The high performance will progress the fastest because it generally will be their idea. They want that perk and they want to grow a career.</p>\n\n\n\n<p>Cory Miller (00:28:44) &#8211; This is my personal opinion, not Kelly. So I want to be clear about that. But I&#8217;ve been around organizations that use coaching as remedial, and I go, Then what happens is coaching gets stigmatized within that organization of if you&#8217;re not performing and you&#8217;re doing a crappy job, you&#8217;re going to get sent. And it has a negative tint to coaching, which is not what it&#8217;s supposed to be. It&#8217;s supposed to be progressing positive, helping improving, navigating situations. And this one organization in particular, it&#8217;s like that&#8217;s how they use coaching. I go, Oh man, Like, then they then all these high performers have this worry about it and don&#8217;t want to potentially go into coaching and miss this incredible benefit to what coaching is.</p>\n\n\n\n<p>Kelly Gallagher (00:29:31) &#8211; That&#8217;s so true. There&#8217;s someone at my door. Can I. Can we pause?</p>\n\n\n\n<p>Cory Miller (00:29:36) &#8211; Yeah.</p>\n\n\n\n<p>Kelly Gallagher (00:29:45) &#8211; Yeah, we&#8217;re talking about, like, high performers and performance coaching. And I do want to make the point that that&#8217;s kind of what I think is my differentiator is that I have all that coaching training, but also I&#8217;ve been in the business world for 30 years selling. So if someone asked me about that, it&#8217;s easy for me to switch out. Yeah, most coaches have like a background, so they&#8217;ve never really had to go out into the world and perform, right?</p>\n\n\n\n<p>Cory Miller (00:30:17) &#8211; Yeah. You bring both sides to that coin I think is incredibly helpful. Like I&#8217;ve talked so much with you about cells because it&#8217;s a weak area. I feel like it&#8217;s a weak area for me, but something I&#8217;ve had to do but forced to do and now trying to begrudgingly trying to do it. But I know you&#8217;ve got such an extensive sales background, business development background that totally leveraged that. In fact I think that&#8217;s how our two times a week started was a sales academy where it wasn&#8217;t necessarily coaching, it was more like sales coaching.</p>\n\n\n\n<p>Kelly Gallagher (00:30:47) &#8211; Right. And it&#8217;s very hard for someone to coach you if they haven&#8217;t walked down the street, guide you down the path. If I&#8217;ve never been on it, I can coach and I can move you in many ways, but can&#8217;t exactly help you to perform because I don&#8217;t know how to perform. So I think that is the differentiator in my coaching style as I&#8217;ve been there. I&#8217;ve been in sales meetings where I got humiliated. I&#8217;ve had clients slam doors in my face. You know, I&#8217;ve executed $1 million contract. So. I just think it helps me to bring more to the party.</p>\n\n\n\n<p>Cory Miller (00:31:25) &#8211; Yeah. And you understand the complete picture. That&#8217;s why, you know, our community is a lot of founders and a lot of high achiever leaders. You know, I&#8217;m curious your thoughts about entrepreneurship, entrepreneurs and coaching. You know, I don&#8217;t know your risk, your client base, but I am one. I know I&#8217;ve benefited from incredibly navigating change, big decisions and the performance side. But what do you say to entrepreneurs about coaching?</p>\n\n\n\n<p>Kelly Gallagher (00:31:58) &#8211; I&#8217;d say it&#8217;s essential because of everything we&#8217;ve talked about in the end.</p>\n\n\n\n<p>Kelly Gallagher (00:32:04) &#8211; As an entrepreneur, you&#8217;re alone, right? That&#8217;s what it is. That&#8217;s the gig. You might have a few people on your team, but generally you&#8217;re alone. It&#8217;s very hard to win deals in isolation. So I would say having a business coach is key to moving forward. Not only in all the things we mentioned, the clarity, the communication, the conflict, the struggle, but then sometimes you just have to go execute. And so for me, it&#8217;s very helpful because I&#8217;ve been in that sales situation so many times and understand features, benefits. I understand how to extrapolate from a client what&#8217;s going to really matter and what&#8217;s not. And I can help people with their slide deck or, you know, whatever it is they want to. So I will generally I can come in in that regard like we do and be a consultant on Friday, but a coach on Mondays. And then and most of my clients who are entrepreneurs use me in that way. Like they will sometimes just bring us like back or we&#8217;ll practice a presentation or they&#8217;ll practice what they&#8217;re going to say to their team before they say it.</p>\n\n\n\n<p>Cory Miller (00:33:18) &#8211; Yep.</p>\n\n\n\n<p>Kelly Gallagher (00:33:18) &#8211; Get some clarity around it to understand. How they&#8217;re feeling in that moment of saying these wonderful things they think are are going to move the team. And sometimes they come out of the meeting and they&#8217;re going to say something completely different. Once we do the coaching, it&#8217;s not that I ever told them to say anything different, but we, you know, polished it. Let&#8217;s say, you know, they come out with this big chunk of coal and they leave and they&#8217;ve got a little diamond and it&#8217;s polished. And like you said earlier, they feel confident.</p>\n\n\n\n<p>Cory Miller (00:33:50) &#8211; Maybe there&#8217;s some entrepreneurs that that come fully birthed into the whole process, but most of us have to learn it and grow through it. What I&#8217;m hearing, though, you know, big decisions, big challenges, big changes, and then the performance side preparation, Polish getting ready for those big things, too. And then the simply put, just trying to make the most of the opportunity. That&#8217;s what I think about. Like so many high achievers that go with an entrepreneur&#8217;s, like we have an opportunity.</p>\n\n\n\n<p>Cory Miller (00:34:24) &#8211; We often like my my story is I stumbled into it, stumbled into it and go, wow, I have this amazing opportunity. So much with business. You go like, it&#8217;s right timing, it&#8217;s right place, right people, right, partners, all the things that have to go together for something to go really well. And then you go, I want to make the most of that. And that&#8217;s my reflection, is that I had an opportunity. I wanted to seize that opportunity to make the most of it. Now, seeing, Oh, wow. Now I did have a coach during about half of my business time, invaluable to help us with the organization. But I go like having someone that this is why we keep working together as I go. I just need it. It&#8217;s just a part of making the most of who I am and my opportunities that come my way to to do even more. And it&#8217;s not necessarily just about money, but it&#8217;s about making the most of the opportunity.</p>\n\n\n\n<p>Kelly Gallagher (00:35:18) &#8211; Right.</p>\n\n\n\n<p>Kelly Gallagher (00:35:19) &#8211; And Joy, while you&#8217;re doing you we haven&#8217;t even touched about that. But there&#8217;s that personal happiness factor and a lot of my clients either are working out or I have them. I try to persuade them to start a fitness program while they&#8217;re with me. But that joy, that love of what you&#8217;re doing, you know, if it&#8217;s not there, it&#8217;s very hard to perform on your.</p>\n\n\n\n<p>Cory Miller (00:35:43) &#8211; Yeah. And you&#8217;ve been such a good coach and you walk that talk. Kelly was telling me before we started the recording that she just ran a mile and swam, and I was like, Gosh, you overachiever. But it&#8217;s such a good inspiration for me for sure, because that other aspect of just life and business and everything is just being physically healthy. And you are a great encourager and you walk your talk.</p>\n\n\n\n<p>Kelly Gallagher (00:36:07) &#8211; I try. I try. I try. I mean, no one&#8217;s perfect. But yeah, I definitely try. And I also find because I work out a lot and I&#8217;m more effective for people because, you know, it brings all that blood flow to the brain.</p>\n\n\n\n<p>Kelly Gallagher (00:36:20) &#8211; So I shared with Cory that sometimes in between clients I&#8217;ll just run up the hill outside my house 4 or 5 times just to sharpen myself for the next person because I can feel it within myself. Then I come in their house and I&#8217;m all happy again and I&#8217;m feeling creative and supercharged and ready to go.</p>\n\n\n\n<p>Cory Miller (00:36:41) &#8211; Oh yeah. You can tell what the energy you have for sure. Well, Kelly, thanks so much for taking the time to talk to us about what you&#8217;re doing. Share a little bit of the experience. I mean, they resonate with me. Everything you&#8217;ve talked about are things that we&#8217;ve worked on in our coaching sessions, and I&#8217;ve been better for it as a person on Earth, as a human, on earth, as a business entrepreneur, leader, all those. But anything else that you want to share that we didn&#8217;t get to talk about?</p>\n\n\n\n<p>Kelly Gallagher (00:37:09) &#8211; No, I mean, what you just said, that&#8217;s what I live for. That&#8217;s my passion is did I, you know, did I help someone? Did they feel better after we, you know, did we move the bar? And I just live for success stories.</p>\n\n\n\n<p>Kelly Gallagher (00:37:23) &#8211; And I find it so much more rewarding than just pure sales. Although I would have argued back then that I was making people&#8217;s lives better because I had a terrific product or whatever, but somehow that what you just said, just seeing personal growth in other people, I just kind of live for that. So thank you.</p>\n\n\n\n<p>Cory Miller (00:37:43) &#8211; Bet. Well, thanks, Keller, for being on. And thanks, everybody, for listening. We&#8217;ll share in the show notes how you can get a hold of Kelly if you&#8217;re interested in talking more with her. She&#8217;s fantastic. Coach, you can&#8217;t. I&#8217;ve referred you numerous times to people that now I believe are our regular clients with you. And we they&#8217;re defensive minded and we always talk like, yep, I just had my Kelly session, just had my Kelly Sessions, so.</p>\n\n\n\n<p>Kelly Gallagher (00:38:08) &#8211; Well, thank you for doing that. Yes. I don&#8217;t really advertise. I haven&#8217;t ever. I only did maybe in the first year. But I think that&#8217;s the other thing. Good coaches just kind of get referrals and.</p>\n\n\n\n<p>Kelly Gallagher (00:38:21) &#8211; That&#8217;s the way it should be.</p>\n\n\n\n<p>Cory Miller (00:38:23) &#8211; You do. All right. Thanks, everybody, for listening to Post Status Draft. It&#8217;s been another episode kind of went out of our league but love to introduce people that have made an indelible difference in my life and to share their wisdom. So we&#8217;ll see everybody next time. Thank you.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2023 20:51:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Do The Woo Community: Scaling and Performance with Justin Mazzi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75777\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://dothewoo.io/scaling-and-performance-with-justin-mazzi/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:392:\"<p>Zach and Carl are joined by Justin Mazzi from A2 Hosting to chat about all things hosting, performance and more.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/scaling-and-performance-with-justin-mazzi/\">Scaling and Performance with Justin Mazzi</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Aug 2023 10:43:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"WPTavern: BuddyPress 12.0 to Introduce Community Visibility Feature that Restricts Access to Members Only\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147320\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"https://wptavern.com/buddypress-12-0-to-introduce-community-visibility-feature-that-restricts-access-to-members-only\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2165:\"<p>BuddyPress 12.0 is set to introduce <a href=\"https://bpdevel.wordpress.com/2023/07/30/bp-dev-chat-summary-for-july-17-agenda-for-july-31/\">a new Community Visibility feature</a> that gives site administrators the option to restrict access to the community sections of the site. Sites set to &#8220;members only&#8221; will show an access error message and a login form when a non-logged-in user tries to view a page generated by BuddyPress.</p>\n\n\n\n<img width=\"936\" height=\"561\" />\n\n\n\n<p>The Community Visibility setting makes it possible to create a private community site without adding any plugins to BuddyPress, a feature that has frequently been requested by BuddyPress site admins. It is being introduced as a basic toggle but BuddyPress contributor David Cavins, who worked on the feature, said it lays the groundwork for future, more granular privacy controls.</p>\n\n\n\n<p>The BuddyPress core development team has also published the <a href=\"https://wordpress.org/plugins/bp-classic/\">BP Classic</a> plugin ahead of the 12.0 release. The plugin provides backwards compatibility for sites using plugins or themes that are not ready for the BP Rewrite API that will be introduced in 12.0. It  includes features and templates that are fully deprecated: </p>\n\n\n\n<ul>\n<li>The BP Legacy widgets (these were migrated as Blocks in BuddyPress 9.0.0).</li>\n\n\n\n<li>The BP Default theme.</li>\n\n\n\n<li>The BP Legacy navigation globals (<code>buddypress()->bp_nav</code> &amp; <code>buddypress()->bp_options_nav</code>).</li>\n</ul>\n\n\n\n<p>An <a href=\"https://buddypress.org/2023/07/bp-classic-1-0-0/\">advisory about BP Classic</a> was posted to the official BuddyPress blog to help site owners figure out if they will need this plugin. Those who require it before upgrading can install it ahead of time and it will be dormant until it is needed. </p>\n\n\n\n<p>The new Community Visibility feature was <a href=\"https://buddypress.trac.wordpress.org/changeset/13533\">committed</a> to trunk five days ago and is on track to be included in the next major release. BuddyPress 12.0 is anticipated to be released on October 30, 2023, and Beta 1 is overdue and expected any day.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 21:02:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"WPTavern: WordPress.com Makes a Bid for Google Domains Customers, Offering 1 Million Free Transfers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147374\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wptavern.com/wordpress-com-makes-a-bid-for-google-domains-customers-offering-1-million-free-transfers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5370:\"<p>WordPress.com is making a strong bid for Google Domains customers after the the product was sold to Squarespace in a deal reportedly worthy $180 million. Shortly after the sale was announced, WordPress.com <a href=\"https://wordpress.com/blog/2023/06/21/how-to-transfer-your-domain-to-wordpresscom/\">pitched Google Domains customers</a>, reminding the public that the company is also a domain registrar, but the call to action didn&#8217;t include much incentive to switch.  </p>\n\n\n\n<p>This week WordPress.com is putting the heat on with a new offer to pay transfer fees and an additional year of registration for the first million domains moved from Google Domains. WordPress.com is also guaranteeing Google Domains customers the same pricing or lower for 400+ top-level domains.</p>\n\n\n\n<p>&#8220;This will also apply to existing WordPress.com customers across most domains, meaning that in many cases we’re lowering your prices.&#8221; Automattic CEO Matt Mullenweg said in the <a href=\"https://wordpress.com/blog/2023/08/01/transfer-unlimited-google-domains-to-wordpresscom-for-free/\">announcement</a> this week.</p>\n\n\n\n<p>&#8220;This isn’t a temporary thing. We’re committed to keeping domain prices low, and will only raise them if our wholesale costs go up (we’ll run our domains business like Costco).&#8221;</p>\n\n\n\n<p>Squarespace has committed to honor the renewal prices previously set by Google Domains existing customers for 12 months but will set its own prices after this time. </p>\n\n\n\n<p>In an <a href=\"https://www.theverge.com/23795154/squarespace-ai-seo-web-social-algorithms-anthony-casalena\">interview with The Verge</a>, Squarespace CEO Anthony Casalena said his company is already using a lot of the same infrastructure Google is using in their Cloud DNS product, having  resold Google Workspace for almost a decade. Squarespace currently employs 1,750 people with revenue under a billion dollars this year. Acquiring Google Domains gives the company the opportunity to cross-sell website packages to its incoming domain customers. There are approximately 10 million domains up for grabs in the transfer of customers.</p>\n\n\n\n<p>Casalena said that being a reseller of Google Workspace was a major factor in Google&#8217;s decision to offer the domains to Squarespace, in addition to having the infrastructure to manage the business. This partially explains what was an otherwise bewildering deal that came as a surprise to the industry:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>First off — once in a lifetime opportunity for us. Incredibly grateful that we were selected as the stewards of that business. We weren’t asking them, like, &#8216;Hey, planning on shutting down domains or anything?&#8217; It wasn’t exactly outbound. I think they made the decision that it’s not a business that they were going to be in. And they contacted a couple of legitimate parties who could potentially even take on a business of that size because, again, it’s not the code or the employees are moving — it’s basically the domains themselves and the hosting services and the registrations, that sort of thing. So that really narrows it down to the number of companies that could even support that.</p>\n\n\n\n<p>Then the other thing that was a big factor is we’ve been a huge fan and big reseller of Google Workspace for nearly a decade now, which was very important to them, and we’re incredibly sophisticated in selling Domains, selling Google Workspace, servicing it, and managing that for millions of people. So we were able to find a transaction that worked for us. </p>\n</blockquote>\n\n\n\n<p>Automattic CEO Matt Mullenweg <a href=\"https://twitter.com/photomatt/status/1686393926603644928\">reacted</a> to the deal on Twitter this week, saying that he was disappointed Google didn&#8217;t make it a more competitive process. </p>\n\n\n\n<p>&#8220;This might cost a ton of money but I was bummed we didn&#8217;t even get a crack at this, my guess is Cloudflare, Godaddy, and Bluehost didn&#8217;t either—why Google didn&#8217;t make this a competitive process?&#8221; Mulleweng said. &#8220;Concerning to have so many domains going to a proprietary CMS.&#8221;</p>\n\n\n\n<p>WordPress.com has been slowly inching towards becoming a one-stop shop for users&#8217; website needs. The company recently <a href=\"https://wptavern.com/wordpress-com-makes-monetization-features-available-for-free\">made its monetization features available for free</a>, making the platform more attractive to creators who are just starting out online. Based on the reaction to Mullenweg&#8217;s tweet, it seems many people are still not aware that they can buy their domains from a registrar and host their websites elsewhere. If you are just hearing about WordPress.com&#8217;s domains, it&#8217;s natural to think they are only for WordPress sites, so the company has some work to do in making prospective customers aware.</p>\n\n\n\n<p>Users can be hesitant to move to a new registrar when they don&#8217;t fully understand the process and don&#8217;t want to negatively impact their online presence. In the case of Google Domains customers, they are moving to a new registrar after the sale closes later this year, whether they like it or not. WordPress.com&#8217;s deal is a compelling offer if they can better position their domains as an independent service.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 17:11:49 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"Gutenberg Times: Live Q &amp; A: Design Systems and theme.json\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25092\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://gutenbergtimes.com/live-q-a-design-systems-and-theme-json/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:62095:\"<p>One of the key challenges of running a site or series of sites at scale is ensuring design consistency and compliance with a design system. During this show, <strong>David Bowman</strong>, principal designer and <strong>Alec Geatches,</strong> JavaScript Developer, both at WordPress VIP will demonstrate the process to export the design system tokens from Figma and import to WordPress.  <strong>Joni Halabi</strong>, Georgetown University, shared how her team at the university works within a different design system. The Panel also discussed WordPress as an enterprise-ready software and Gutenberg being a design system in the making.  The show was hosted by  Birgit Pauli-Haack, curator of the Gutenberg Times.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n\n\n\n<p class=\"has-large-font-size\"><strong>Shared Resources: </strong></p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/Automattic/vip-design-system-bridge\">Repository for the design bridge</a></li>\n\n\n\n<li><a href=\"https://github.com/Automattic/vip-design-system-bridge/blob/trunk/docs/design-tokens-example/README.md\">Tutorial about Figma Tokens Tutorial </a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/course/develop-your-first-low-code-block-theme/\">Develop Your First Low-Code Block Theme</a></li>\n\n\n\n<li>U<a href=\"https://learn.wordpress.org/courses/#using-the-site-editor\">sing the Site Editor Courses:</a> </li>\n\n\n\n<li>Plugin <a href=\"https://wordpress.org/plugins/create-block-theme/\">Create-Block-Theme</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/41547\">Governing block settings and interactions</a></li>\n\n\n\n<li><a href=\"https://twig.symfony.com/\">Twig: PHP template engine</a></li>\n</ul>\n\n\n\n<p>Also: </p>\n\n\n\n<ul>\n<li><a href=\"https://bigbite.net/2021/02/18/whitepaper-implementing-a-design-system-into-wordpress/\">White paper – Implementing a design system into WordPress</a> by BigBite</li>\n\n\n\n<li><a href=\"https://wpvip.com/2022/12/15/using-a-design-system-with-the-wordpress-block-editor-pt-1-theme-json/\">Using a Design System with the WordPress Block Editor Pt. 1: theme.json</a></li>\n\n\n\n<li><a href=\"https://wpvip.com/2022/12/22/using-a-design-system-with-wordpress-block-types-styles/\">Using a Design System with the WordPress Block Editor Pt 2: Block Types and Styles</a></li>\n\n\n\n<li><a href=\"https://wpvip.com/2022/12/09/figma-to-wordpress/\">Exporting Design System Tokens From Figma to WordPress</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p class=\"has-large-font-size\"><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-strong-introductions-strong\">Introductions</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-strong-finding-and-working-with-design-systems-strong\">Finding and Working with Design Systems</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-strong-figma-and-theme-json-strong\">Figma and Theme.json</a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-strong-theme-json-or-classic-theme-strong\">Theme.json or Classic Theme</a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-strong-website-demo-strong\">Website Demo</a></li><li><a href=\"https://gutenbergtimes.com/feed/#6-strong-bidirectional-strong\">Bidirectional</a></li><li><a href=\"https://gutenbergtimes.com/feed/#7-strong-opinions-using-word-press-strong\">Opinions using WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#8-strong-using-core-blocks-strong\">Using Core Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#9-strong-patterns-strong\">Patterns</a></li><li><a href=\"https://gutenbergtimes.com/feed/#10-strong-links-and-syncs-strong\">Links and Syncs</a></li><li><a href=\"https://gutenbergtimes.com/feed/#11-strong-changing-design-practices-how-to-start-strong\">Changing Design Practices &#8211; How to Start</a></li><li><a href=\"https://gutenbergtimes.com/feed/#12-strong-create-block-theme-strong\">Create Block Theme</a></li><li><a href=\"https://gutenbergtimes.com/feed/#13-strong-primer-getting-started-strong\">Primer &#8211; Getting Started</a></li><li><a href=\"https://gutenbergtimes.com/feed/#14-strong-vip-plugins-strong\">VIP Plugins</a></li><li><a href=\"https://gutenbergtimes.com/feed/#15-strong-contact-info-strong\">Contact Info</a></li></ul></div>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\">Transcript </p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Welcome, welcome to the 35th Gutenberg Times Live Q and A. Sorry. My name is Birgit Pauli-Haack, and I&#8217;m your host tonight, or this morning, depending on where you are. Thank you all for watching. It&#8217;s great to have you all. And today&#8217;s show, we will discuss how companies and institutions can organize the WordPress sites around established design systems in general. And then how to do this with Figma and WordPress theme.json. The folks of WordPress VIP team build a plugin for the workflow and we will see a demo of it. And later we&#8217;ll also hear how Georgetown University works with the design system. And then we&#8217;ll answer all your questions as well as mine. It&#8217;s the little privilege that I have.</p>\n\n\n\n<p>So I&#8217;m thrilled to have these three experts on the show for you. It&#8217;s David Bowman, principal designer at WordPress VIP, and then we have Joni Halabi, senior developer at Georgetown University, and Alec Geatches, also JavaScript developer at WordPress VIP.</p>\n\n\n\n<p><em>Alec Geatches</em>: Hi.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hi, everybody. Glad you joined me here on this little show. We do proper introduction of course, in a minute. I have just a few housekeeping notes. The questions for those who are watching on YouTube, on the right hand side, you have a chat window, that&#8217;s where you can put your questions and also your comments. And then here on Zoom, we have the Q and A bubble on the bottom and the chat bubble to share your thoughts and questions. And please, please be kind, even if you disagree. This is a family friendly endeavor. And with that out of the way&#8230; I need to group&#8230; Yeah, so we&#8217;ll get into introductions. I have two questions for each of you. From where are you calling in today and what is your day job like? So David, do you want to start and then Alec and then Joni?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"1-strong-introductions-strong\">Introductions</h2>\n\n\n\n<p><em>David Bowman</em>: Sure. I&#8217;m calling in from northern Utah where I work from home here. And my day job, I&#8217;m a principal designer at WordPress VIP. That&#8217;s my background. I&#8217;m a graphic designer by trade, but have gotten into product design and web development via WordPress over the years. And now I work at WordPress VIP, focusing mostly on design systems and on how we can increase enterprises and big organizations to adopt Gutenberg and block theming, which I&#8217;m super stoked about.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>David Bowman</em>: And I&#8217;ll pass&#8230; Should I pass to someone? I&#8217;ll pass to Joni.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Joni Halabi</em>: Oh, thanks. Hi everybody, my name is Joni Halabi. I&#8217;m calling in from the United States in the DC metro area. My day job, I am a senior web developer at Georgetown University, mostly working on WordPress customizations. And my specialty is custom block creation, so that is probably 80% of what I do.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Mm-hmm. Excellent. And it&#8217;s up to you, Alec.</p>\n\n\n\n<p><em>Alec Geatches</em>: Hi, I&#8217;m Alec. I&#8217;m calling in from the States as well. I&#8217;m in Colorado. I work at WordPress VIP along with David, and I&#8217;m a developer. I&#8217;ve been a web developer for 10-plus years. Right now I&#8217;m working on a team that&#8217;s been focused on making the Gutenberg editor work better for enterprising companies. So that&#8217;s some of the stuff we&#8217;re talking about today, like design systems, how to integrate those with WordPress, editor curation, locking down the editor, things like that. And my team&#8217;s also done some work with decoupled slash headless WordPress as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Awesome. Awesome. So cutting edge right there. Joni, and you also published on the developer blog about the difference between static blocks and dynamic blocks. And I think that was very helpful to a lot of developers who started out with Gutenberg development. Thank you so much for doing that.</p>\n\n\n\n<p><em>Joni Halabi</em>: Thank you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And Dynamic Blocks will get a little bit more promotion with the interactivity API, but that&#8217;s a different show. But that&#8217;s coming with 6.4, not 6.3, 6.4. So let&#8217;s get into the show.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-strong-finding-and-working-with-design-systems-strong\">Finding and Working with Design Systems</h2>\n\n\n\n<p>For someone who&#8217;s a little bit not so in these big systems, what are design systems and how would you connect them? How do you find them and how do you work with them?</p>\n\n\n\n<p><em>Alec Geatches</em>: David was the first one to explain this to me, so I would defer to David.</p>\n\n\n\n<p><em>David Bowman</em>: I&#8217;ll try to be brief. I have a tendency to ramble and get lost in my thoughts when I&#8217;m talking about design systems, but the textbook definition that I give everybody is that a design system, the purpose of it, is in a classical sense to speed application development. So it makes it easier for designers and developers to work together to build some software application. And there are three parts to it. There&#8217;s code, there&#8217;s code. So it&#8217;s usually a set of reusable components and styles and things. Usually lives in a package that developers pull into their project. There is a UI kit. In our case at WordPress VIP, that&#8217;s a big Figma library, a bunch of Figma files with components and styles and things that mirrors what exists in code. And then there&#8217;s documentation to explain how everything works together. Because it&#8217;s inherently complex, a lot of it needs explaining. We do our best to just make it all smooth and seamless, but at the end of the day, a lot of stuff needs to be explained, so there&#8217;s always a documentation component.</p>\n\n\n\n<p>Those are the three bits. Classically meant for just speeding application development. I think what we&#8217;ll talk about today, and why I&#8217;m so excited about Gutenberg is that I think that Gutenberg adds content creators and page builders into the design system equation. So when you&#8217;re building a WordPress theme, you&#8217;re not really building a website. If you&#8217;re building a block theme, you&#8217;re building a tool that someone else is going to use to actually build the website. And so you have to include the content creator in the design system club, which I think Gutenberg blocks do pretty effectively. But yeah, that&#8217;s, I guess, how WordPress makes it a little different. That&#8217;s my answer. If you ask anyone, everyone has different opinions, but that&#8217;s mine.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Alec, Joni, do you have a different opinion? Do you want to add something to it?</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, so at Georgetown, we&#8217;re building our own system of websites. We support just about 400 websites on our WordPress systems, and they fall under one of two different themes. But we built this design system&#8230; It&#8217;s a homegrown system that is inspired by atomic design, but we&#8217;re not using those atomic terms. So we came up with our own terms. So we have foundational elements, and then we have those come together to make blocks and those will come together to make page templates and so on and so on. And one of our goals at Georgetown is to really lock down our design system to be super, super hyper specific to the university because we have some very strict visual identity guidelines. We strive to adhere to WCAG 2.1, AA standards for accessibility. And we have a whole host of just interactivity opinions that we want to at least try to enforce across all of our websites.</p>\n\n\n\n<p>So what we do on my team, I&#8217;m part of the web services team there, we are creating this system that&#8217;s going to be used by individuals across the university who are in charge of their own websites. And some of these people, they are pretty well versed in web technologies and some of them, they have day jobs, and this is something that they do on the side. And it&#8217;s part of that infamous, other duties as prescribed, sentence that we all see in our job descriptions. So we might have somebody working on their website for their office, and they don&#8217;t know HTML, so we&#8217;re trying to make things as easy as possible with our design systems.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-strong-figma-and-theme-json-strong\">Figma and Theme.json</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. But what you did on WordPress VIP was also to&#8230; You said the word Figma, which is a design system by itself where you can build them, and then you bridged it to&#8230; Because WordPress block themes have this theme.json, which is pretty much a machine readable code of design styles and settings pretty much. And how to get it from the Figma into a block theme or theme.json, so you can spin up new sites. Is that how I explained that right?</p>\n\n\n\n<p><em>David Bowman</em>: Pretty much, yeah. I think the way that, and I have a demo that I&#8217;ll show of exactly how this works, but the way that our design system workflow works, I think we&#8217;re similar to how you guys run, Joni, but at a much smaller scale, because we&#8217;re a company, but we only maintain really two marketing sites right now, some documentation sites, so it&#8217;s a much smaller footprint. But we know that there are organizations like Georgetown and like every other enterprise company out there that runs a significant web presence where they&#8217;ve got just a ton of stuff. There&#8217;s all sorts, and it&#8217;s all different. Everyone has their own special needs. And at the end of the day, something you said, Joni, that really struck me, was that at the end of the day, the people that are actually pulling the levers on the website might as well be bloggers.</p>\n\n\n\n<p>They&#8217;re not some developer. A lot of times they&#8217;re doing it and they don&#8217;t want to, because they don&#8217;t have a lot of time, and they just want it to be easy. And that&#8217;s actually why I think WordPress is most viable as an enterprise product. I think WordPress is perfect for this, because it&#8217;s designed for bloggers, it&#8217;s designed to be easy, and at the end of the day, everyone at work, that&#8217;s what they are. They&#8217;re not all a bunch of fancy web experts. And Gutenberg really provides a way for us to deliver that design system to them in a way that they can actually make use of it. And I guess the way that we do that, our flow is that our designers make stuff in Figma. We are designing our blocks, we&#8217;re designing our page layouts, we design, pick our colors, design all sorts of things.</p>\n\n\n\n<p>And then a large portion of that gets exported from Figma as something called design tokens, which is a fancy term in the design system world, and it&#8217;s a variable. You can basically think of it as a variable. If you want to be philosophical about it, it&#8217;s a design decision represented in a little piece of code, and it&#8217;s something like, &#8220;My brand color is red.&#8221; That&#8217;s how you would say it in words. And a bunch of those get exported from Figma to a code base in GitHub where we store our design system. And then that gets further exported from the design system down into theme.json in our WordPress applications. And the introduction of theme.json, is like, I can&#8217;t overstate how revolutionary that was for WordPress applications.</p>\n\n\n\n<p>I say all the time that Gutenberg is a design system, and it hasn&#8217;t realized it yet. It&#8217;s in its teenage years, it&#8217;s still coming of age and finding itself, and give it another five years and it&#8217;s going to realize what it is, it&#8217;s design system. And that theme.json file is the config for your design system and gives you a landing place for all of those design decisions that you&#8217;ve made. And because it&#8217;s all nice in code in a nice little json file, you can automate all that.</p>\n\n\n\n<p>And that&#8217;s my litmus test for whether something is a, quote, real design system or not, is that if at any point of the step from designer thinks of something, developer builds it, content creator uses it, anywhere along that chain, if you have to rely on a human API to make sure something works, like if someone has to copy paste something or refer to a style guide or copy stuff out of an inspect mode and Figma, then it&#8217;s not a real design system. If you want to be real hard-nosed about it. But the goal is all the robots do the work for you, but theme.json lets you do that.</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah. If I can interject. To piggyback off of that. Theme.json was such a game changer for us, because&#8230; I alluded to this before, we really want to lock down our designs and out of the box WordPress, it gives you so many options in terms of color palettes and typography settings. I personally love that for a one-off site that is not affiliated with Georgetown. If I were to go and build a site, having that many options is great. Within the Georgetown universe, we don&#8217;t want that. We don&#8217;t want that. So being able to say, &#8220;I want to turn off custom palettes. I want to restrict the palettes to just our approved colors. I don&#8217;t want people to mess with the typography settings.&#8221; You get two choices for sizes. It has been absolutely wonderful. As soon as we saw that come into Core, we added it to our theme, and it was love, just love.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"4-strong-theme-json-or-classic-theme-strong\">Theme.json or Classic Theme</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Are you using theme.json on a classic theme, or are you moving into block themes as well? So gradually?</p>\n\n\n\n<p><em>Joni Halabi</em>: So we&#8217;re currently using it on a classic theme, and this is a much longer story and probably a different talk. I did an experiment to see how easy it was to convert that classic theme into a block theme and also incorporate our design system, which uses external twig templates into that block theme. And it was an amazing experiment and a very complicated experiment, and I just spoke about that at a conference last week. So if anybody&#8217;s interested, you can follow me. I&#8217;m sure the video will be up in a month or so.</p>\n\n\n\n<p><em>David Bowman</em>: Oh, I want to watch that video. Absolutely. I want to watch that video.</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah.</p>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s a real journey whenever someone embarks on that task. That&#8217;s a real quest.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I will do a switch from my site from a classic theme to a block thing I haven&#8217;t migrated yet. Although I&#8217;m talking with people about block themes since 2020, the first time about it, but I still haven&#8217;t done the switch yet. But talking about videos, I think, David, you have a demo for us, and I think that&#8217;s now a good place to play that and to talk about it afterwards.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"5-strong-website-demo-strong\">Website Demo</h2>\n\n\n\n<p><em>David Bowman</em>: Awesome. I will play this demo and&#8230; Yeah, it&#8217;s a&#8230; Oh, hang on, I got to share my sound. Can&#8217;t forget that one. Yeah, let&#8217;s play. It&#8217;s pretty casual demo, but it gives you a little taste of how we&#8217;re using this stuff on our websites with our WordPress theme and how we use blocks. Let&#8217;s start from the beginning. Here we go.</p>\n\n\n\n<p>Hi, I wanted to give a quick demo to show you how we integrate Figma with our WordPress theme and how we use blocks as an extension of our design system. So here we are in Figma, and the foundation of our design system is our design tokens. And these mainly manifest in Figma as color and type styles, but we use a lot of other tokens in production for things like spacing, border radius. You use design tokens for all sorts of things. They have a lot of uses.</p>\n\n\n\n<p>So using a common token structure between our applications is a big part of how our design system works smoothly and has good interoperability. And this here, what we&#8217;re looking at is the file that manages all the color and type styles that we use across our designs. And to link all these things up to our tokens and ultimately to our WordPress theme, our tokens live in GitHub, we use this plugin here called Token Studio. And this is a community created plugin, and it provides two main things for us. It gives us a way to push design changes from Figma here to GitHub, and it also gives us a way to manage design tokens that Figma doesn&#8217;t support right now. And it lets us do that within our design tool where we&#8217;re working on these things, and that makes the code a lot more accessible to designers.</p>\n\n\n\n<p>So to demonstrate how all of this works, I&#8217;m going to show you how we can swap themes, and then I&#8217;ll show you what that looks like on the front end of an application and then what that looks like in the block editor. So we use themes and there&#8217;s a lot to this plugin. There&#8217;s videos, there&#8217;s documentation, there&#8217;s a lot going on here. There&#8217;s a lot going on here, but right now, this is the file that manages the styles for <a href=\"https://wpvip.com/\">wpvip.com</a>, and I&#8217;m going to go ahead and swap it for the token set for our other application Parse.ly, which you can see you swap it and it swaps out all the colors. So colors is the easiest place to see this change happening.</p>\n\n\n\n<p>So there you go. So we&#8217;ve effectively swapped everything for a different set of tokens. So if we were to publish this library, it would update all of our designs with new values. So you can see how that switching works. And likewise, if a designer were to make a change to one of these, say they want to make the background color something else, they could make that change here, and then go ahead and push it up to GitHub. And from there we go to our tool, to the Design Bridge tool to get the tokens from the standard format in which they&#8217;re stored out into our WordPress theme. So I will show you that next.</p>\n\n\n\n<p>So here we are. This is our design system repository that houses all of our tokens and then all the components of our design system for our React application, for our dashboard. So in terms of WordPress or WordPress applications, this just houses the tokens. Everything else in terms of components and things are the Gutenberg blocks. That&#8217;s all coming from WordPress Core, and then any custom block plugins that we&#8217;ve made. So what you&#8217;re looking at here, is this is how all of our design tokens are saved. So yeah, it&#8217;s a standard format. The W3C is working on a new web standard for design tokens, and this is what Token Studio outputs to GitHub. And you see that we&#8217;re able to alias between tokens. We have a core set that has all of our underlying color palettes and type scales and things, and we, from all those raw values, curate the values that are going to get used in our WordPress applications.</p>\n\n\n\n<p>So you can see here our body one short style are these attributes that then get applied as CSS in our WordPress application. So this is how they&#8217;re stored. And in order to get things from here into theme.json, where they can be applied to our blocks, into our global styles, we created a tool called the Design Bridge. So I&#8217;m going to go ahead and I&#8217;m going to run it. It doesn&#8217;t look like a whole lot, but I&#8217;ll show you what it does on the other side. So it runs in the command line right now. And we did that so that people can automate this, you can work it into an existing dev workflow to just make it more flexible. It could run as a GitHub action. You can do a lot to automate this process.</p>\n\n\n\n<p>But for right now, I&#8217;m going to do it manually. And all it does, is it takes two arguments. So it takes the token path, which is the path to where the tokens live, which is right here, what we&#8217;re looking at. And then it takes the path to the theme where it will look for a theme.json file, and then you pass it the value of a token theme. So these are things that Token Studio creates to tell it what token files to activate basically. And then you choose whether you want it to overwrite your existing theme.json file or not. And we&#8217;ll go ahead and hit enter. It will do its magic, and then it will tell you that it&#8217;s done. Say, &#8220;Hey, we did it.&#8221; So next we&#8217;ll pop over to pop to our WordPress application and see what that looks like.</p>\n\n\n\n<p>So here we are in our theme.json file, and what our tool does, is it outputs all of our design tokens as variables in the custom object in theme.json. So if you&#8217;ve done any amount of theme.json work and working with global styles, you&#8217;ll know there&#8217;s this little custom object that sits inside of the settings object in theme.json. And this is just a blank thing that you can put whatever you want in. And everything that you put in here will be exposed to CSS variables along with any global styles that you are adding. So this has just been reformatted and output here into theme.json. And the format&#8217;s very similar. It&#8217;s not exactly the standard format, but it is pretty close. But it does go ahead and output the design system, essentially.</p>\n\n\n\n<p>And so what this does is it exposes it in a predictable way in the DOM as CSS variables that are named according to the standard way that Gutenberg names all of its CSS variables. And that means that you can reference them in block development and you can point all of your blocks and all the work you&#8217;re doing to style your theme. You can point it at a constant set of variables that can be swapped out exactly the same way that we swapped out the styles and Figma, like I just showed you, you can do the same thing on a WordPress application.</p>\n\n\n\n<p>Yeah, so I&#8217;ll show you what that looks like now. All right. So here we are. This is Parse.ly. This is the website for our content analytics product at WordPress VIP. And this is one of the two web applications right now that we have running on our theme that is set up to integrate with our tool here. And as you can see, it looks all green and looks branded appropriately. And I&#8217;m going to go ahead and swap the tokens and you can see what happens when it does that. So I&#8217;m going to go ahead and run our sync and do it. And there you go. You can see what happens is it changes, you see font styles, you see colors changing. It&#8217;s not a huge change, because we haven&#8217;t designed it to be very divergent between the brands, but you do see the front end styles get swapped out and it works pretty well and makes it pretty easy to manage a multi-brand system of WordPress applications. And so next, let&#8217;s look at what this looks like in the block editor.</p>\n\n\n\n<p>Okay, so now we&#8217;re in a local dev site here, and this for me is really where the magic and the value of this really happens. So this is a sample page and we&#8217;ve got this set up with our styles. We&#8217;ve got this set up to be pulling from the global styles we&#8217;ve defined, all the block styles we&#8217;ve defined. You can see in here we&#8217;ve got our pallets defined for this particular brand, Parse.ly, and these are coming from theme.json. And so if we go ahead and run the same sync&#8230; I&#8217;m going to run the sync and then refresh the page here. You can see what happens if I swap the theme from Parse.ly back to WPVIP. And looks like that sink is done. I&#8217;m going to refresh. And you see everything changed. Everything goes gold. You get the brand colors from VIP. And this stuff is achievable with CSS. You can swap out CSS styles, you can point at a different style sheet.</p>\n\n\n\n<p>But I think what makes the integration in theme.json super valuable is that you get all of your block options are updated as well, because all of these are also coming from theme.json. So not only are you getting front end style updates, but you&#8217;re getting updates in interactivity in the backend, which is great. That&#8217;s really what you want to be able to make a good user experience and to be able to manage multiple user experiences and have it all get integrated easily with your design tooling. So yeah, there you go. That&#8217;s the high level, a lot of detail to talk about, but this is the quick rundown of what the tool can do.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Excellent.</p>\n\n\n\n<p><em>David Bowman</em>: There you go.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you so much for the demo. It&#8217;s kind of whose head is spinning, but I really love that flow from the designers work here, and then you can just write some script or run some scripts and then you have it all in the theme already. Does it also work backwards, or is it only one direction?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"6-strong-bidirectional-strong\">Bidirectional</h2>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s bidirectional. What it does is it sets up&#8230; Our GitHub repo, our design system repo is the actual source of truth. And so that means that a developer can use an IDE to edit that code file and save it. Or a designer can use Figma to edit that same file and save it and its version controlled with Git and they can both pull down each other&#8217;s changes and it brings designers into an actual dev workflow on a design system. At least for the tokens. Just for the tokens.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Just for the tokens, yeah. We don&#8217;t have any questions from the audience right now, but Joni, do you have any questions? Or David and Alec?</p>\n\n\n\n<p><em>Joni Halabi</em>: I don&#8217;t know where to start.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Are you muted or&#8230; No.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"7-strong-opinions-using-word-press-strong\">Opinions using WordPress</h2>\n\n\n\n<p><em>Joni Halabi</em>: I was at a loss for words. It was a very cool demo. I&#8217;m very excited by that switch where both the front end and the block options change, because that&#8217;s something that could&#8230; So at Georgetown we have two different themes and they look pretty different. They&#8217;re similar in terms of colors, but not exactly the same, slightly different fonts, slightly different colors. And to be able to have the ability to switch between the two&#8230; Because we have a lot of sites who are wanting one theme over the other.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>David Bowman</em>: I mean I have questions for you. I am extremely curious about&#8230; Because like I said, everyone does this their own way. Every organization that I know that has a design system&#8230; I think there&#8217;s a reason that every big company out there has made their own. Google made one, Amazon made one, Salesforce. They all make their own because they all do it differently. And so I guess, is WordPress your primary user facing surface that you&#8217;re maintaining or do you have other stuff? Do you have React applications or is it pretty much just WordPress sites?</p>\n\n\n\n<p><em>Joni Halabi</em>: For our team, it&#8217;s pretty much just WordPress sites. The history of our team, we&#8217;ve actually worked with a number of CMSs. I think this might be our fourth or fifth overall, but WordPress is our primary UI just because it&#8217;s a very easy UI, especially for those content editors who don&#8217;t have a ton of experience, it&#8217;s easy for them to pick up. And I feel like it&#8217;s gotten easier. I&#8217;m hoping it&#8217;s gotten easier since the classic editor. But yeah, I mean in the future, one of the big reasons why we created our own design system, we call it our pattern library, and the reason why that pattern library is external is in the future, if we do have some external application that we want to hook into or we have a piece of software like an LMS or something that will let us customize the front end, we can say, &#8220;Hey, you can go grab this twig file and there&#8217;s your custom header, or here&#8217;s your custom footer, or here is the color palette that we want this to use.&#8221;</p>\n\n\n\n<p>We wanted something that was a little bit more universal and not necessarily in WordPress. So we built this pattern library. Actually my colleague was the one who really architected the entire thing. It&#8217;s built-in kss-node and it&#8217;s really slick. We can take those styles and take those twig files and import them into our WordPress build, but we also have a front end interface for this pattern library that includes documentation and different variations on patterns and such so that somebody who just wants to see all of these different foundational elements or what a block looks like, they can do that with a front end that isn&#8217;t necessarily associated with our WordPress installation.</p>\n\n\n\n<p><em>David Bowman</em>: That&#8217;s super interesting, because it sounds like you guys are doing the part of the integration that has terrified me up until now. I think design tokens are&#8230; Well, not easy, but it&#8217;s easier. They&#8217;re just little variables. They&#8217;re little bits of data that you can pass back and forth, and it&#8217;s a mapping exercise to get it to go to the right place. But when it comes to actually having&#8230; Like if you look at another design system, there&#8217;s their tokens, and then they have their components and all of those components, when we started working on design system integration stuff, I went under the assumption that the WordPress Core blocks are your component library. That if you&#8217;re integrating with WordPress, you get a component library and you should think of it as another framework that you support.</p>\n\n\n\n<p>So Google material supports React and View, and if your design system supports library A also supports Gutenberg. And Gutenberg is very opinionated about what blocks it has and how you use them. And so I took all that for just for granted. I was like, &#8220;Cool, we&#8217;re going to assume core blocks and go from there and then build some custom stuff.&#8221; But it sounds like you&#8217;ve gotten much further than that. You have this whole&#8230; You got a whole thing run in to put all the core blocks together. Are you using Core blocks? What are you&#8230; I guess, tell me more about this.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"8-strong-using-core-blocks-strong\">Using Core Blocks</h2>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, so that, that&#8217;s actually the core part of my job. So we are using Core blocks because it was very important for us to be able to maintain that basic, basic blocks, so header list, paragraph image, things like that. But we&#8217;ve also taken away access of some of the blocks that we don&#8217;t necessarily want our content editors using. So a lot of the full site editing focused blocks, so like page title query. I&#8217;ve said this before, we like lock things down. So we&#8217;ve locked those down. And to replace those blocks, we&#8217;ve actually created a number of custom blocks.</p>\n\n\n\n<p>So our custom blocks will give our content editors the ability to grab posts by category, which, yes, there&#8217;s a core block for that, but we also really, really wanted control over the markup for that scenario. We have a bunch of blocks that will allow you to have an image and text next to each other or video and text next to each other. And again, for us, it&#8217;s a control issue. We really want control over that markup. So all of the blocks that I&#8217;ve written to be custom for installation, they are dynamic blocks. And the beauty of the dynamic block is it makes it really, really easy to hook those dynamic blocks. We just take the render function in PHP, we hook that via timber to our twig files from the external pattern library. So we have one block we call premo with image.</p>\n\n\n\n<p>So it&#8217;s an image next to some text and maybe a call to action link. And what I&#8217;m doing in that render function is I&#8217;m just taking all of that information, the image object information, the text, the link, and I&#8217;m sending it as an array, just an array of parameters to my twig file in the pattern library. And the pattern library does the rest on the front end. So it means if we ever want to switch out the front end, if we discover, &#8220;Hey, we have an accessibility bug. Our CTA link isn&#8217;t really accessible, we need to change the Aria label on it, or we need to change the color contrast on this button,&#8221; we can do that within the pattern library. And WordPress is unaffected by it, so we don&#8217;t have to worry about things like deprecation errors. We don&#8217;t have to worry about having people go in and update their page to a new version of the block or anything like that. It just automatically happens as we make those changes to our pattern library.</p>\n\n\n\n<p><em>David Bowman</em>: That sounds awesome. I have so many questions, but I&#8217;m talking a lot. Alec, do you have any thoughts?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"9-strong-patterns-strong\">Patterns</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Before you get to your questions, I have a small clarification, when you talk about patterns, you are not talking about WordPress patterns, or are you?</p>\n\n\n\n<p><em>Joni Halabi</em>: I am not. No, sorry, I am talking about design patterns. We&#8217;re still struggling with terminology because pattern is a very loaded word. It could be WordPress patterns, it could be design patterns. Block is another big one that we struggle with because there&#8217;s WordPress blocks, but then there&#8217;s also blocks of information and blocks of HTML. And so thank you for&#8230;</p>\n\n\n\n<p><em>David Bowman</em>: Even theme means like 10 things in different contexts.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. When you talk about Figma themes, it&#8217;s like, &#8220;Oh yeah, those are totally different than WordPress themes.&#8221;</p>\n\n\n\n<p><em>David Bowman</em>: Everyone&#8217;s got a theme. There&#8217;s a lot. You got to really keep your theme straight.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"10-strong-links-and-syncs-strong\">Links and Syncs</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So we got one question, and thank you Alec, for answering that, from Bridget Vessel. Is that the best place to get the links? And she linked to a page on WordPress VIP, and then Alec had added two additional links there. And I will put those also in the show notes after the show.</p>\n\n\n\n<p><em>Alec Geatches</em>: Okay, yeah, I can talk about that a little bit if that&#8217;s okay.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, please do.</p>\n\n\n\n<p><em>Alec Geatches</em>: So when we first designed this with David, we wanted to be able to&#8230; If you watched what David was doing, have no idea what happened or you just want to try it yourself, we have this long readme, or it&#8217;s in our design system bridge repository, but it&#8217;s a whole walkthrough. We have a little tiny material UI, basic design system, Figma document. You can clone that. You can see how the Figma tokens plugin that David was using, connects to it and how the token sync. And then you can use our tool to pull down those tokens and sync it up with a theme.json and then you can like, &#8220;Oh look, the color changed as I made a change in Figma, synced it, now it&#8217;s in WordPress,&#8221; and see how all of those links work together. The secret sauce in that is that custom section in theme.json. So that&#8217;s where you can dump all of your CSS variables, mostly colors, typography, things like that, units, and then you can just re-reference those in other parts of your theme.json.</p>\n\n\n\n<p>So like your palette, you can say, &#8220;Give me the primary color.&#8221; And then in Figma, you can change your primary color. It gets synced to the same spot. Then your block pulls in a different primary color for its options. It&#8217;s all magical, but it&#8217;s really based off of that custom section. And what the design system bridge does, is it reads all that json, puts it in a format that&#8217;s comfortable for CSS and for WordPress using Style Dictionary, which is this Amazon product. It&#8217;s basically used for design tokens for this exact purpose or similar, where you have some design constructs, you want to put them in a different format. So we have some transforms in there. It&#8217;s like add some pixel units here. It&#8217;s really basic stuff. For the most part, we take that json, modify it a bit, put it right in the theme.json custom list, and from there it just works. Anyways, check out the tutorial I linked. We can put that in the show notes for a walkthrough, it&#8217;s really simple. You might not learn a lot from it, but it can at least show you the full end-to-end process.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you.</p>\n\n\n\n<p><em>David Bowman</em>: As soon as you implement it, as soon as you use it a couple of times, it feels really good. Changing something in Figma and then watching it update in WordPress theme. It&#8217;s pretty cool.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"11-strong-changing-design-practices-how-to-start-strong\">Changing Design Practices &#8211; How to Start</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I can imagine how that&#8230; Amazing. So we get from an attendee, we have a developer who&#8217;s deep in the Gutenberg ecosystem and he has a question about how would you go about inspiring hesitant designers to a) embrace things like the site editor style book, and b) adapt their existing, if applicable, design systems like Figma, XD and whatever those two become post-acquisition, to work more in what Gutenberg already provides. I&#8217;m struggling to achieve internal buy-in to change design practices, even though I have full internal buy-in from ownership for Gutenberg and block-based theming. That&#8217;s the loaded question, right? The million dollar question. So, thank you for that question. That&#8217;s a really good one. Yeah. Who wants to take it on first? You all work with developers.</p>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s a good question.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So how do you embrace things like site editor style book?</p>\n\n\n\n<p><em>David Bowman</em>: I guess I would, maybe this isn&#8217;t an answer to the question, I&#8217;ve been talking a lot again, but I&#8217;ll just say this quickly. As a designer who went on this journey who was like, &#8220;I got to use Gutenberg, let&#8217;s figure it out,&#8221; and having to go through that process, a couple of things were really helpful to me. The first one was to maybe as a non-starter for some people, but just get into block theme development. Block theme development is not hard. And I think that one of the best things about block themes is that the code of a WordPress theme includes very little PHP now, it includes very little JavaScript by default. And if you want to start doing things like getting custom styles and really doing things, it&#8217;s pretty simple. And the meat of their block theme development, so much of it is happening in json files and block markup files that are HTML, that it&#8217;s very accessible.</p>\n\n\n\n<p>And so if you&#8217;re a designer that is wanting to understand Gutenberg, just go build a block theme. Go really get in there and try and figure it out, because doing that, you&#8217;ll see that there are a lot of places where you can really integrate it with what you already have. So theme.json, getting tokens out of Figma and into theme.json is&#8230; Just that is a really big step. And that&#8217;s the other piece of advice I would give is to just focus on small things. Just because Gutenberg is so opinionated and truly has not realized that it&#8217;s a design system yet.</p>\n\n\n\n<p>There&#8217;s a lot of the dynamic blocks, static blocks, there&#8217;s a lot, there&#8217;s a lot of pitfalls, but if you can focus on the small things, like getting global styles hooked up to your existing design styles, you&#8217;ll get a long way. At least that was my experience, is that just doing those things, I was like, &#8220;Oh, cool, I can actually really craft this experience in the editor and I can craft the front end and I can influence it as a designer without having to go bug a developer to make a PR for me.&#8221; Often I can just go and change it. I can go change my Figma files and that was pretty rad. That was longer than I wanted it to be, but that was my answer.</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, I would definitely echo that. But I think it almost feels like there is a social aspect to this question as well. And I would want to dig deeper into why the designers are hesitant about getting their hands in there. It almost seems like, are they feeling overwhelmed? Are they feeling like they don&#8217;t have the technical chops for it? I would start to have those conversations with the designers and maybe developers and designers can get into a room, virtual or physical, however you all work, and just see where that pain point is. Sometimes I know personally when I feel like oh my goodness, something is really difficult, something is just mentally blocking me from starting that task, it might be easier to talk it out or to have somebody hold my hand, at least for the first couple of steps, and maybe that will give them the inspiration to just jump in.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"12-strong-create-block-theme-strong\">Create Block Theme</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And yeah, I understand that not everybody who gets into a car knows how to drive it. You need somebody to show it to you. Or another metaphor is if books would help or documentation would help, there wouldn&#8217;t be universities attached to libraries. So what I shared in the chat window was two links. One is to a course on learn.WordPress. That is develop your first low-code block theme. So to get a scaffolding and use the tools that are in the site editor, and they have been really expanding and they will be with 6.3. I don&#8217;t know if you are watching here and you want to see what&#8217;s coming, 6.3, there was a product walkthrough last night and it will be published on news on WordPress. And then the other link that I shared is just a tag of other courses on how to use the site editor.</p>\n\n\n\n<p>I think it really helps to know how a content creator is going to use the site editor as well to help with the design and what would be needed. Of course, that&#8217;s the beginning. So the theme team, WordPress theme team, also developed a plugin. It&#8217;s called Create block theme plugin, which also lets you then create style variation, create patterns, as well as export the theme from the site so you can upload it to another site. That&#8217;s helping with the workflow of block themes development. And I&#8217;m sure I&#8217;m going to get the link when I&#8217;m doing it live and talking. That&#8217;s never a good thing.</p>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s easy to search for. Create block theme.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Create block theme.</p>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s a good one.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, and it has its active development and the designers that are actually creating themes for the repository, they&#8217;re start out with that plugin and then do some modifications later on if they needed to. But it&#8217;s very good to create some.</p>\n\n\n\n<p><em>David Bowman</em>: I would add maybe one little note to the create block theme thing, which is that&#8230; So the site editor and tools like create block theme, it&#8217;s rapidly getting so much better to the point that their goal is to have the site editor be a design tool so that you can sit down and craft a theme and be able to use it like a design tool. And it&#8217;s going to get there and it&#8217;s getting there pretty quickly. But I would, maybe this is a spicy hot take for me, is that I would not think of WordPress as a no-code solution. There are definitely, if you need that and you want to use WordPress, there&#8217;s options for you. But as just a designer being like, &#8220;Hey, I want to make a website. I need a no-code solution to make a website,&#8221; there&#8217;s stuff out there that&#8217;s really good that&#8217;s not WordPress.</p>\n\n\n\n<p>And I think you give up a lot when you go with those, but you do get no-code. But what WordPress has, that some of these other things don&#8217;t, is that the code that you need to make a WordPress theme, it&#8217;s really easy, and it might not be fully, “no-code,” but it is very accessible code. And if you have ever, ever, ever made a website ever, like in college, ever, if you&#8217;ve ever done it, you can figure out how to do a block theme. And in addition to really digging into the site editor, go read the docs on theme.json. If you go read the docs on theme.json, you&#8217;ll be like, &#8220;Oh, it&#8217;s just a json file.&#8221; And you can go and find yourself developing, quote, block themes before you know it. And that&#8217;s pretty rad.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I like that analogy. There was this idea that block development raises the bar for entry. Because with the JavaScript and the React and the build tool and all that, the theme.json, got us back to the tinkering kind. We want to, &#8220;Oh, I want to make this border bigger, or I want to make that color more red. And I go into the theme.json and I just change it and boom, it&#8217;s done.&#8221; So it really is a good way to get your hands dirty again, with a little bit of code. We got some more information from our developer and they said, &#8220;Thank you all. I&#8217;m not certain my design colleagues will feel comfortable diving into WordPress themselves based on our experience together. I myself am very comfortable with coding block themes, SCSS under the hood and such, and how once I&#8217;m done, we set up the theme.json, that the process is largely no-code. It&#8217;s a whole new world.&#8221;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"13-strong-primer-getting-started-strong\">Primer &#8211; Getting Started</h2>\n\n\n\n<p>As a more overarching question for David and all, Figma or otherwise, what would be a good primer to share with my designers who I think are intimidated by development&#8217;s expectations. Now that I&#8217;m working exclusively in Gutenberg, I&#8217;m suspicious that there isn&#8217;t a robust design system in place on their end. And the question I ask when it comes to populating my theme.json are challenging their current practices. Is there a good getting started with web design systems resource you would recommend to them? And I give it back to David or Alec or Joni?</p>\n\n\n\n<p><em>David Bowman</em>: That&#8217;s a good question and I&#8217;ll tell you what resources I used when I was doing this, because I think a lot of, “web designers,” nowadays you learn&#8230; If you&#8217;re as old as me and learn to doing stuff in Photoshop and you&#8217;re used to&#8230; Design systems is a relatively new thing. And it is made designing things for the web more technical, but it&#8217;s also made it a lot more efficient and you hand off to devs easier. There&#8217;s a lot of benefits to it. And the way that I got into design systems was by honestly mostly by checking out existing design systems. And the big guys like IBM Carbon was very influential for me. Google material is ubiquitous in our lives. If you go check out the documentation sites for these big design systems, they really lay it out very nicely, because they&#8217;ve got whole teams supporting them.</p>\n\n\n\n<p>And so they&#8217;re like, &#8220;Here, this is our design system. Here&#8217;s our Figma files that you use. Here&#8217;s this.&#8221; They&#8217;re all open source and you can download and play with them and build stuff with them. That can be a lot. If you&#8217;re really interested in getting into design systems, that&#8217;s a great place to start. If it&#8217;s too much, honestly Figma. If you&#8217;re not already using Figma, you should probably be using Figma. And Figma, with their latest releases at their config conference just a few weeks ago, introduced variables into Figma. They introduced modes into Figma. And so they now natively support some really fundamental design system concepts and have a bunch of really great little tutorial files that you can go play with, and this is how it works. You change from light mode to dark mode. And it&#8217;s mirroring how it&#8217;s going to work in code and point them at those. If they&#8217;re not Figma people then tell them to get into Figma. Hopefully Adobe XD just dies a slow death and they just, which I think is their plan.</p>\n\n\n\n<p><em>Alec Geatches</em>: Yeah, I&#8217;d also say searching Figma templates or just the word design systems or the words you can find a whole bunch, everything from these huge ones with 10 pages of buttons and things to just a little baby one that&#8217;s just a color palette and then you can take one and change it up. And that&#8217;s how I learned about them and got a hands-on knowledge.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Joni, do you have any input?</p>\n\n\n\n<p><em>Joni Halabi</em>: I was just going to say, I&#8217;m a developer. Everything I suggest is going to be code, so you probably don&#8217;t want to take a suggestion from me, but Figma looks amazing.</p>\n\n\n\n<p><em>David Bowman</em>: Figma&#8217;s great.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"14-strong-vip-plugins-strong\">VIP Plugins</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Awesome. So I&#8217;m really glad that we all got together today. We&#8217;re leading up on the hour. I have two questions for you. I know VIP is also working on two other plugins. Do you want to talk about it Alec, briefly, so we can wet the&#8230;</p>\n\n\n\n<p><em>Alec Geatches</em>: The first one still internal beta, so I don&#8217;t have a good link for it, but it&#8217;s super relevant to what we&#8217;ve been talking about, what Joni was talking about. Just locking things down. David posted here. Let me find that link real quick. I had that ready. A great issue in the Gutenberg repository last year and it was talking about theme.json. It&#8217;s great for design systems, but it loses the scope of these higher level design system things like if you embed this block in a hero, how does it look different now? Usually that&#8217;s part of a design system. These typography options are available here but not here. And theme.json just has a flat block structure. Every block has these settings when you design them that way in theme.json. Where was I going with this?</p>\n\n\n\n<p>We&#8217;re working on a plug in that is looking to extend Gutenberg and the way that David is talking about, but also have a very allow list approach to everything which blocks you have, which roles get access to them, which block settings you have, things like that. So we want to make this super enterprise focused, because Gutenberg gives you the ability to just do crazy things. Even if you lock it down to a design system, you still get a lot of options for a lot of things and it&#8217;s very hard to get those all out if you&#8217;re running 40 websites for other people. So we&#8217;re working on a plugin that…</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Or 400.</p>\n\n\n\n<p><em>Alec Geatches</em>: Yeah, yeah. Or 4,000 or yeah. WordPress goes crazy. So yeah, we&#8217;ll have more information when that becomes public or when we talk about it more. But anyways, we&#8217;ve been heads deep in this trying to work with Gutenberg to allow these enterprise things, because Gutenberg is meant to be customizable. We don&#8217;t want to be customizable at all, want everyone&#8217;s job to be easy and not have that many typography options. And so the other plugin that we&#8217;re working on…</p>\n\n\n\n<p>Yeah, just have good options and not that many of them. And the other thing that we worked on, this is released now, it&#8217;s called the block data API. This is a headless or decoupled thing, but there&#8217;s this issue with the way that post work in Gutenberg that make it tricky to use sometimes in like a node. If you have a node front end and you want to consume that, pretty much for a post, if you use the rest API, you just get a big blob of HTML. And it&#8217;s got class names in it and sometimes it&#8217;s got styling in it and there&#8217;s not a lot you can do with it other than just put it on the page and try to supply enough styles so that it looks decent.</p>\n\n\n\n<p>But it can be hard to map onto custom components and things. There are ways to do it, but it&#8217;s pretty tricky. So we added this block data API. If you just search that in Google, you&#8217;ll find it. Check it out, look at the first GIF. It explains how it works, but it&#8217;s just we read through the HTML, parse it into json, and then pass that back. So you just get a bunch of json that you can map onto your own custom components instead of just having to rely on HTML string somewhere. So that&#8217;s pretty cool. We just released it for the first time this year. We&#8217;ve got one customer who will be launching it soon. I don&#8217;t think I can say any more specific on either part of that, but pretty cool.</p>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s going to be big.</p>\n\n\n\n<p><em>Alec Geatches</em>: I&#8217;m excited about that.</p>\n\n\n\n<p><em>David Bowman</em>: It&#8217;s going to be cool.</p>\n\n\n\n<p><em>Alec Geatches</em>: Yep. Anyway, so those are the two main things our team&#8217;s been working on.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, so there are quite a few enterprise companies who actually use WordPress as a content creation tool, but not on the front end, because they need other data match up with things. So yeah, the headless is the way that they go via the rest API. So that block data API is probably going to be embraced by quite a few agencies as well and not just the clients of VIP.</p>\n\n\n\n<p><em>Alec Geatches</em>: Yeah, hopefully.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"15-strong-contact-info-strong\">Contact Info</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, we do. So we have three minutes to go. If the viewers want to get in touch with you, what&#8217;s a good place to reach you? Joni? Or do you have anything else that you couldn&#8217;t talk about but you want everybody to know?</p>\n\n\n\n<p><em>Joni Halabi</em>: Yeah, if folks want to reach me, you can find my contact info on my website. It&#8217;s <a href=\"https://jhalabi.com/\">jhalabi.com</a>. I&#8217;m also @jonihalabi on most socials.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. Thank you. Alec and David?</p>\n\n\n\n<p><em>Alec Geatches</em>: David, go for it.</p>\n\n\n\n<p><em>David Bowman</em>: Alec.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You&#8217;re too nice.</p>\n\n\n\n<p><em>Alec Geatches</em>: I&#8217;m going to be quiet.</p>\n\n\n\n<p><em>David Bowman</em>: So find me on LinkedIn if you want to talk WordPress stuff. That&#8217;s probably the best place to find me to talk about WordPress things. I&#8217;m also social media. You find me at hanging out in the Gutenberg GitHub repository sometimes. And yeah, I also, I blog with my family at <a href=\"https://americanfieldtrip.com/\">americanfieldtrip.com</a> about, totally not related to WordPress, but you can find me there. It&#8217;s mostly about national parks and travel stuff.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, wonderful.</p>\n\n\n\n<p><em>David Bowman</em>: But yeah, that&#8217;s how you find me. There&#8217;s a few different ways if you really want to track me down.</p>\n\n\n\n<p><em>Alec Geatches</em>: I&#8217;ve searched my name, Alec Geatches. I think I&#8217;m the only one so far. So you&#8217;ll find me there. You can email me at <a href=\"mailto:alecg@automatic.com\">alecg@automattic.com</a>.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Well thank you so much, and I think we are right at the hour. Very punctual. Yeah, it&#8217;s a German show. Well, thank you, all three of you, for spending the time with me and explaining all this good design systems and how you work with WordPress. I learned a lot about it, and I&#8217;m sure the viewers learned a lot too. Thank you so much for coming and I hope you have a wonderful weekend. It&#8217;s Friday night, or Friday morning, depending on where you are. Thanks everybody, and goodbye.</p>\n\n\n\n<p><em>David Bowman</em>: Thanks, everyone.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And we got a thank you from our anonymous developer. We use CD and with a pending acquisition of Figma by Adobe, I&#8217;m cautiously giddy and design system distraught. So here&#8217;s hoping. All right. That&#8217;s a good way to end it. Thank you all so much.</p>\n\n\n\n<p><em>David Bowman</em>: Take the plunge.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You take care, and I&#8217;ll end it here.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 15:55:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Akismet: OpenAPI specification for Akismet now available\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=174137\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://akismet.com/blog/openapi-specification-for-akismet-now-available/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1163:\"<p>We have just released our first <a href=\"https://www.openapis.org/\">OpenAPI</a> specification for Akismet, which is hosted on Github:</p>\n\n\n\n<p><a href=\"https://github.com/Automattic/akismet-api\">https://github.com/Automattic/akismet-api</a></p>\n\n\n\n<p><a href=\"https://github.com/Automattic/akismet-api/blob/trunk/spec.yml\">The file</a> describes <a href=\"https://akismet.com/developers/\">our API</a> and each of its endpoints, including what parameters they accept and what the response looks like.</p>\n\n\n\n<p>You can import the spec to explore the API using tools like <a href=\"https://swagger.io/tools/swaggerhub/\">SwaggerHub</a> and <a href=\"https://www.postman.com/\">Postman</a>. You can also use it to automatically generate code for the Akismet API in your chosen programming language using <a href=\"https://openapi-generator.tech/\">OpenAPI Generator</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">We&#8217;re here to help</h3>\n\n\n\n<p>If you need help using our OpenAPI spec, or have any questions about our <a href=\"https://akismet.com/developers/\">API endpoints</a>, please don’t hesitate to&nbsp;<a href=\"https://akismet.com/contact/\">get in touch</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 14:31:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Chris Rosser ?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"WordPress.org blog: Concerns over the European Union’s Cyber Resilience Act (CRA)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15686\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4086:\"<p>As the world’s most popular open source content management system, WordPress acknowledges the European Union&#8217;s initiative to bolster the cybersecurity of digital hardware and software products with the <a href=\"https://www.european-cyber-resilience-act.com/\">Cyber Resilience Act (CRA)</a>. The Act’s effort to counter the increasing threat of cyberattacks and promote informed usage of digital products with increased security updates and transparency is commendable.&nbsp;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>While we wholly endorse the objectives of the CRA, we are apprehensive about the Act&#8217;s implications on open source software due to unclear terms and definitions. </p>\n</blockquote>\n\n\n\n<p>Specifically, the Act’s prohibition on &#8220;unfinished software&#8221; and ambiguous definition of &#8220;commercial activity&#8221; could inadvertently inhibit innovation and economic participation in the European digital landscape.</p>\n\n\n\n<p>Open source projects, like WordPress, often rely on continual updates and improvements—a process that may technically fall under the label of &#8220;unfinished.&#8221; Furthermore, the ambiguous definition of &#8220;commercial activity&#8221; could unintentionally encompass open source projects that are largely driven by communities and operate on a not-for-profit basis.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Our letter to the EU Commission</h2>\n\n\n\n<p>We have jointly authored an open letter addressing these concerns alongside fellow open source projects Drupal, Joomla!, and TYPO3<sup class=\"fn\"><a href=\"https://wordpress.org/news/feed/#eb28afbc-3487-447f-9af9-8b0418310a00\" id=\"eb28afbc-3487-447f-9af9-8b0418310a00-link\">1</a></sup>. The letter emphasizes the significant contribution of Free and Open Source Software (FOSS) to the EU&#8217;s economy and how the proposed regulations might undermine these efforts. Our shared goal is to further bolster the security of digital products without compromising the values of freedom, democracy, and innovation inherent to both the open source community and the <a href=\"https://european-union.europa.eu/principles-countries-history/principles-and-values/aims-and-values_en\">EU’s Aims and Values</a>.</p>\n\n\n\n<p>The letter invites the EU Commission and interested parties to participate in a seminar in Brussels to discuss how we can align the objectives of the CRA with the realities and needs of the FOSS community. We are optimistic that, with mutual understanding and cooperation, we can achieve secure digital products without limiting the vital contributions of open source projects.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-2 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://wordpress.org/news/files/2023/08/Open_Letter_on_the_Significance_of_Free_and_Open_Source_Software_in_the_EU_s_Proposed_Cyber_Resilience_Act.pdf\" target=\"_blank\" rel=\"noreferrer noopener\">Read the letter</a></div>\n</div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><ol class=\"wp-block-footnotes\"><li id=\"eb28afbc-3487-447f-9af9-8b0418310a00\"><a href=\"https://www.drupal.org/\">Drupal</a>, <a href=\"https://www.joomla.org/\">Joomla!</a>, <a href=\"https://typo3.com/\">TYPO3</a>, and <a href=\"https://wordpress.org/\">WordPress</a> are the most popular FOSS content management systems on the web today. While all are based on the PHP programming language and distributed under the GPL open source license, each platform takes a different approach to website publishing. With strength in diversity, they form the Inter-CMS Working Group, promoting the values and benefits of free and open source software. <a href=\"https://wordpress.org/news/feed/#eb28afbc-3487-447f-9af9-8b0418310a00-link\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/21a9.png\" alt=\"↩\" class=\"wp-smiley\" />︎</a></li></ol></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 14:25:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"Josepha\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"WPTavern: #86 – Dan Walmsley on How WordPress Can Adapt to the Reality of AI\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=147378\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/podcast/86-dan-walmsley-on-how-wordpress-can-adapt-to-the-reality-of-ai\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:60788:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case how AI works and how it might integrate with WordPress.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you and hopefully get you, or your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>Before we begin, just a quick alert that there will not be a podcast next week. It&#8217;s summer here and I&#8217;m having a few days away, but we&#8217;ll be back the week after that.</p>\n\n\n\n<p>So on the podcast today we have Dan Walmsley. Dan is a long time user of WordPress, having started using it even before version one was released. With a passion for experimenting with different publishing technologies, Dan eventually discovered WordPress and he&#8217;s been using it ever since.</p>\n\n\n\n<p>Currently working at Automattic as a code Wrangler, dan is part of the applied AI team. Although the team is relatively new, with only a few members, their mission is to coordinate and guide the various AI initiatives within the company.</p>\n\n\n\n<p>Recently he&#8217;s been focusing on automating internal workflows and communications. A particularly crucial aspect, given the distributed work set up which spans 70 countries, and multiple time zones.</p>\n\n\n\n<p>We start the conversation talking about Dan&#8217;s background. He&#8217;s recently decided that AI is a truly transformational technology, and so has taken steps to learn the skills needed to understand and implement it.</p>\n\n\n\n<p>Dan talks about how Large Language Models work, and how ChatGPT has driven awareness and demand for AI technologies in a way that was almost impossible to predict just a year ago. This has caused many companies to become deeply interested in AI and what it can do for their business workflows.</p>\n\n\n\n<p>We get into whether the reality of AI can live up to the hype. Do we have enough understanding of AI to know what its impact will be on the workplace, or are we just in the middle of a media frenzy, which will die down over time?</p>\n\n\n\n<p>Dan challenges, the notion that AI will take many of our jobs and emphasizes the economic value that AI can bring.</p>\n\n\n\n<p>We move on to explore the differences between site generators and site builders, and Dan introduces the concept of the copilot era, in which website creation can be somewhat automated. He highlights tools like Jetpack AI, which can generate content and modify the tone of voice right inside of WordPress.</p>\n\n\n\n<p>Dan stresses the importance of building AI tools with user interfaces that learn from human inputs in order to improve over time. He thinks that companies, which measure user responses and interactions will gain a significant advantage in AI development. While those who fail to improve that AI content generation will be left behind.</p>\n\n\n\n<p>Whether you&#8217;re new to AI or have been paying attention for awhile, this podcast offers a fascinating insight into its impact on society and how it can accelerate progress in fields like scientific research.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where find all the episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Dan Walmsley.</p>\n\n\n\n<p>I am joined on the podcast today by Dan Walmsley. Hello, Dan.</p>\n\n\n\n<p>[00:04:35] <strong>Dan Walmsley:</strong> Hello Nathan. Great to be here.</p>\n\n\n\n<p>[00:04:37] <strong>Nathan Wrigley:</strong> Yeah. Thank you for joining us. Dan, I wonder if you wouldn&#8217;t mind spending just a very quick moment or two just introducing yourself. Obviously, this is a WordPress podcast. I suspect that today we might stray out of the boundaries of the WordPress ecosystem a little bit. I have a feeling with our preamble talk that we&#8217;ve had, that may well happen. Nevertheless, given that it is a WordPress podcast, can you just tell us a little bit about your background, the work that you do, who you work for, that kind of thing.</p>\n\n\n\n<p>[00:05:01] <strong>Dan Walmsley:</strong> Yes. So I have been using WordPress since before version one, or whenever the first version came out. Because I remember back at the time I was playing around a lot with Movable Type and, oh gosh, I can&#8217;t even remember the name of all the different things. I&#8217;d gone through quite a few different publishing platforms, just experimenting with the web. And I discovered WordPress and I&#8217;ve literally still got that same blog, and it&#8217;s still on WordPress, and it&#8217;s been upgraded through every different version ever since.</p>\n\n\n\n<p>I work at Automattic. I am on the Applied AI team. I am a Code Wrangler, or code mangler. We all give ourselves our own titles and mine changes a bit. My colleague calls himself an applied AI artisan. And we&#8217; re a pretty new team. We&#8217;ve been around just a couple of months. And we&#8217;re very small, as in right now it&#8217;s just me and a couple of data scientists. But we have a lot of AI at Automattic. Our team&#8217;s job is to sort of try to coalesce, coordinate, guide, align it. So that we&#8217;re not just operating at the leaf nodes, that there&#8217;s a bit of larger thinking going into things.</p>\n\n\n\n<p>And as such, my days are mostly spent building weird prototypes on LangChain and chatbots. The most interesting thing I&#8217;ve looked at recently is automating some of our internal workflows and communications. Because we operate async, we&#8217;re remote. We&#8217;re in 70 odd countries around the world in different time zones. And so using AI to capture people&#8217;s knowledge and repeat it later when they&#8217;re asleep is pretty useful.</p>\n\n\n\n<p>[00:06:25] <strong>Nathan Wrigley:</strong> When the word Automattic is announced, I usually think of WordPress, but I think I&#8217;m right in saying that Automattic is the parent of quite a few different companies. So the connection between WordPress, the open source project, download from .org, may not be quite so obvious. But the implementation, it may well go into some of the SaaS offerings that you&#8217;ve got I&#8217;m guessing as well.</p>\n\n\n\n<p>[00:06:48] <strong>Dan Walmsley:</strong> Yeah, so we are trying to build out AI infrastructure that really doesn&#8217;t have a direct dependency on WordPress. You know, GPUs are GPUs, and we&#8217;re running a Python based stack on those, because that&#8217;s where a lot of the open source activity is. You might have seen that OpenAI announced some changes to their APIs, and in just a few hours, LangChain had a new release, incorporating those features.</p>\n\n\n\n<p>Good luck even finding that in TypeScript, let alone PHP, right? So if you want to move fast, you want to be on the cutting edge, got to stand up a bunch of Python. I&#8217;ve built a version of LangChain in PHP that runs on WordPress.com for the purposes of producing knowledge bases from blogs. It&#8217;s possible that if it turns out to be useful and reliable, that we&#8217;ll open source some of that. But right now it&#8217;s just there to provide some quick indexing for chat interfaces.</p>\n\n\n\n<p>[00:07:34] <strong>Nathan Wrigley:</strong> So your team is fairly new. Give us an idea of how old that word new means. Are we going back two years or 18 months or a couple of months?</p>\n\n\n\n<p>[00:07:43] <strong>Dan Walmsley:</strong> Two months maybe?</p>\n\n\n\n<p>[00:07:44] <strong>Nathan Wrigley:</strong> Really, new. Okay. And did that sort of trickle down from the Automattic leadership? Was it that people up there decided that, okay, now we&#8217;ve got OpenAI in the space, everybody&#8217;s, I mean, literally everybody seems to be talking about it.</p>\n\n\n\n<p>I don&#8217;t think I&#8217;ve picked up a newspaper, certainly an online newspaper, in the recent past without there being some kind of AI story in there. So was it that, or was it more a groundswell of Automatticians saying, look, if we&#8217;re going to stay in the game, we need to be moving with this.</p>\n\n\n\n<p>[00:08:11] <strong>Dan Walmsley:</strong> There&#8217;s some people who have been pushing on LLMs and transformer technology since pre GPT three or two. Which includes me. When I had my sabbatical a couple of years ago. So Automattic has a three month sabbatical, and I was like I&#8217;m going to learn AI. This seems really cool.</p>\n\n\n\n<p>So I did Andrew Ng&#8217;s Deep Learning course and a couple of other ones. There&#8217;s some really great courses out there now, even better ones now, this was about three years ago. And I just thought, oh my god, if this grows up, which it looks like it&#8217;s going to, it could be amazing for generating content. It could be amazing for conversational interfaces.</p>\n\n\n\n<p>I had a little Roomba running around my house, pretending to be a psychopathic robot with chainsaw arms, when in fact it was a little plastic Roomba. But it was like vaguely self-aware that it didn&#8217;t have chainsaws for arms. And so it would be like, when I get my chainsaws back on, you&#8217;re a toast buddy.</p>\n\n\n\n<p>I had an Australian robot that trundled around, it would try to get you to stop working and go to the beach. But it had no way of getting to the beach, which is hilarious. Anyway, that&#8217;s a long way of saying, some of us have been pushing for this stuff for a while, but I think what changed, obviously ChatGPT came out and created a lot of public awareness and public demand and conversation.</p>\n\n\n\n<p>People started to see this as a race. Companies started to see this, I don&#8217;t think Automattic necessarily falls in this bucket, but a lot of companies started to see this as existential. Either you have an AI plan or you&#8217;re dead. And so it made sense to put together a team that&#8217;s sort of looking at what is this for the whole organization.</p>\n\n\n\n<p>Because like you said, it&#8217;s a complicated organization. We&#8217;ve got podcasting apps, we&#8217;ve got diary apps. We&#8217;ve got Woo. We&#8217;ve got Day One and all these different things. Sensei is a learning management platform. And so we really needed to figure out how we could scale these efforts up, and not end up duplicating things or having tons of different approaches where it&#8217;s hard to get economies of scale, or build knowledge or build capability.</p>\n\n\n\n<p>[00:09:53] <strong>Nathan Wrigley:</strong> Now, given that the rate of change seems to be so incredibly fast. Give us an idea over those last two months, how much knowledge you&#8217;ve had to ingest. And I don&#8217;t necessarily mean knowledge, but how has it been, trying to keep up over those last couple of months?</p>\n\n\n\n<p>Is it genuinely as fast moving as it appears from the outside to be? What you learned last month probably doesn&#8217;t apply this month. And so therefore staring into the future, and if I asked you the slightly banal question, what will we be doing with AI in two years time? Is there really any realistic chance that you can offer us an answer to that?</p>\n\n\n\n<p>[00:10:27] <strong>Dan Walmsley:</strong> Well in terms of keeping up with it, there really is no way to keep up with everything. And I mean, there&#8217;s multiple different dimensions here, right? There&#8217;s the research dimension, what papers are coming out and how practical are those papers. And where are the outcomes of those papers showing up in libraries?</p>\n\n\n\n<p>And then there&#8217;s like, where is it showing up in products? What are our competitors doing, or what products might we plug into our own stack? For example, we can use GPT4 to generate help responses, but we have to sort of, stand up maybe a vector database and some other infrastructure, various job management things.</p>\n\n\n\n<p>There&#8217;s other third party services where you can point them at some public documentation and they figure all that stuff out for you, and just give you one endpoint that just chats with you. And it&#8217;s oh, well how much do we embrace this plus that? A lot of the day to day involves build versus buy versus don&#8217;t bother.</p>\n\n\n\n<p>And it&#8217;s really hard because our team currently has not that many full-time developers on it, and we do want to move really fast and understand these technologies and do the judicious integration. I personally in my horrifyingly long career have done lots of integrations and they&#8217;re almost always bad news.</p>\n\n\n\n<p>And I&#8217;m almost always fighting to do some minimal thing like in-house, rather than integrate. But it&#8217;s a constant. That&#8217;s really the battle. It&#8217;s like less so the awareness of what&#8217;s happening and more so wrestling with the idea of like, how do we incorporate this or not?</p>\n\n\n\n<p>And people wondering if something&#8217;s strategic or aligned or whatever. And there&#8217;s all these different time horizons you&#8217;re looking at. Like, are you talking about today? In a week, in two weeks, in a month, in a year? Because they&#8217;re all different answers.</p>\n\n\n\n<p>[00:11:57] <strong>Nathan Wrigley:</strong> Yeah, I feel like if I was to to you about AI two years ago, I genuinely think the conversation about what we would be doing in 2023, 2024, I honestly don&#8217;t think we could have got any kind of line of sight into what happened. Even maybe a year ago. Nobody would&#8217;ve thought that mainstream media, mainstream products, would be using AI. And like you said, falling over each other to have some kind of policy on AI. So I don&#8217;t quite know how conversation will go.</p>\n\n\n\n<p>But it feels as if we&#8217;re in the infancy of this still, and it does feel if we are going propel ourselves through this at an exponentially faster rate. The thing that just popped into my head was that when humanity first came up with the motor car, it was, at least in the UK, you had to have somebody walking with a flag in front of the motor car. And most people probably looked at it and thought, that&#8217;s ridiculous. I could walk there just as quickly as I could get into that vehicle and be driven there because it&#8217;s going so slowly.</p>\n\n\n\n<p>Give it 10 years, got a little bit faster. Give it another 10 years, it got faster and more beautiful and more efficient. But of course it then polluted the world, which brings us onto the inherent problems that we may have with AI. There&#8217;s a lot of concern about unexpected consequences. The fact that it hallucinates. The fact that it may give information out which is inaccurate. Given that this is your work, are you fairly sanguine that things built with AI are broadly speaking safe? Or are we just working out what the guardrails even are?</p>\n\n\n\n<p>[00:13:25] <strong>Dan Walmsley:</strong> Well there&#8217;s a few pieces to that question, and I keep failing to address all the pieces of your question, so I&#8217;ll try to genuinely do it this time. But, the first piece is sort of like where we&#8217;re at in this AI timeline, and you talked about various analogies.</p>\n\n\n\n<p>I think of this as the BBS era. If you&#8217;re in your forties, you know what a BBS is. If you&#8217;re not, it was when people used to connect to a single computer using a modem, and the modems were slow enough that you could see the text appearing on the screen. Sometimes slower than you could read. Certainly when I started using BBSs, it was slower than you could read, and even slower for images.</p>\n\n\n\n<p>And obviously subsequent to that we got the internet, through various stages. And now, you look at a BBS and it&#8217;s unrecognizable. It&#8217;s like why would you ever look up information this way when you can look at the whole internet? I think we&#8217;re going to go through the same thing with AI.</p>\n\n\n\n<p>There was another part to your questions which was the danger piece. There are alignment techniques that we use today on large language models and other kinds of models, that are fairly reliable at the scales at which those models operate, or at least useful.</p>\n\n\n\n<p>And the worst things that those models can do are not yet super terrible. if you&#8217;ve got one plugin that talks to your bank and another plugin that can pick up the phone, then a rogue AI can hallucinate its way into destroying your life, no problem.</p>\n\n\n\n<p>I sometimes talk about this with, we&#8217;ve experimented with building ChatGPT plugins for different products, including wordpress.com. And one of the hardest things is, you have to put user confirmation stuff everywhere because you simply can&#8217;t predict when the AI&#8217;s going to start invoking your API in backwards ways, and just deleting all your posts because it thought that&#8217;s what you wanted to do. Turning every post synopsis into the word red paper clip.</p>\n\n\n\n<p>There&#8217;s a broader alignment thing that I think goes way beyond that. It goes way beyond these hallucinations. Because you know, I think people get caught up with, oh well it&#8217;s not that useful because of the size of the context window. It&#8217;s not that useful because it hallucinates. So it&#8217;s not that useful because it was last updated in September, 2021. As if all of those aren&#8217;t things that are going to change immediately, right?</p>\n\n\n\n<p>Those are all solvable problems. We know we can make larger context windows. We know we can update it more often. We know we can inject additional information. We know that various alignment techniques can encourage it to reason more thoughtfully and activate pathways that have more expertise, and that will continue to be the case. And as the models get larger, those pathways with expertise will have more expertise. And so it&#8217;s obvious and predictable, those things.</p>\n\n\n\n<p>So the really hard thing to predict is where does this interface with society? And you know, we touched briefly on jobs and other things. Or whether, obviously people talk about rogue states getting an unhinged intelligence to go do crazy scientific research for them, or invent a nuclear weapon or a chemical weapon.</p>\n\n\n\n<p>Google Brain just invented protein folding. So get this, the Google Brain team, Google Deep Mind, they invented a protein folding system that can fold a protein in a few seconds, which is the equivalent of about at least four years of PhD time. And so in that single invention, they eradicated, I suppose you could say, or avoided over a million years of PhD time. By folding all those proteins instantly.</p>\n\n\n\n<p>The thing I think we&#8217;re not ready for is that rate of progress. I call it Moore&#8217;s Law for everything. Where you have a self-reinforcing centralized paradigm, where you have AIs that, by their very progress, make it easier to build the next AIs.</p>\n\n\n\n<p>And then at the same time you have this fanning out into different disciplines, where those newer AIs are also making it easier to make scientific progress. You could use, for example a score like Perplexity, feed in all of the papers in the world and find the most useful research questions to ask that have not been answered, by basically large scale language based statistics.</p>\n\n\n\n<p>[00:17:03] <strong>Nathan Wrigley:</strong> I think this is the piece where my knowledge breaks down because my interaction with AI has largely been ChatGPT. Certainly the most recent versions of ChatGPT. Plus also the image creation tools. And, I&#8217;m amazed by how quickly I&#8217;ve become, unimpressed is the wrong word, but how quickly I just expect it to give me something akin to a human.</p>\n\n\n\n<p>The first couple of times I used ChatGPT my entire endeavor was to see what it would produce, and be utterly, utterly flabbergasted by the fact that it could in any way give me something coherent back. And the same with the image creation tools, Stable Diffusion and a few others that I&#8217;ve tried. Typing in some kind of prompt, and then just jaw droppingly quickly, something half decent comes back. And you know you try a little bit harder and you tweak the input that you&#8217;re putting in and something slightly better comes back.</p>\n\n\n\n<p>I&#8217;m kind of amazed by how quickly that became uninteresting and just normal. In the same way that when I was a child, I first got on the bike and suddenly I could ride a bike and wow, this was amazing. Two weeks later you have to basically pay me to get on the bike at that point, it&#8217;d lost its interest.</p>\n\n\n\n<p>But I&#8217;m wondering if that interface, because it is replicating a human in many ways, you know, the ability to do art and the ability to give us answers, whether it&#8217;s hallucinating or not. I wonder if that&#8217;s something that we all think that&#8217;s the way the AI&#8217;s going to go. But the examples that you gave just then, like medical research and probably research in all sorts of scientific domains, if that&#8217;s something which just never quite gets out into the public.</p>\n\n\n\n<p>So the fear that a lot of people have, and there are some parts of that that I share, is never counterbalanced by the, but listen we&#8217;ve just done thousands and thousands of hours of PhD equivalent work in a matter of moments. Look how fantastic this is. I don&#8217;t think that message gets out very often.</p>\n\n\n\n<p>[00:18:56] <strong>Dan Walmsley:</strong> Well, you know, and without launching into a critique of the media, I think we can all recognize that dramatic headlines sell. And I&#8217;m sure if the headlines of these articles were slightly hard to predict whether AI will be good or bad, stay tuned. Then they wouldn&#8217;t sell so many newspapers.</p>\n\n\n\n<p>You know, I don&#8217;t think anybody can actually, at a large scale, predict the outcome of the current AI revolution. That there are people who think that it will be a nothing burger. And there are people who think that it will more likely than not, result in the eradication of the human species. And there are people who think it&#8217;ll be cyborgs. And there are people who think it&#8217;ll be utopia. They&#8217;re all neither right nor wrong, yet.</p>\n\n\n\n<p>I will say though, that people narrowly pushing, AI will take all the jobs line, definitely wrong in my opinion. Part of that we really alluded to this before the show, but part of that is, humans are really good at inventing new jobs. We added like 8 billion humans to the planet in the last a hundred or so years, and we gave them all jobs, no problem. We can invent new jobs like dog tickler and it&#8217;s fine.</p>\n\n\n\n<p>People will just find ways to keep themselves busy. And if AIs come and take away a huge amount of jobs, particularly those jobs that are mostly typing and mostly repetitive, like similar things over and over again, then maybe those people get a chance to like move their bodies and stand up.</p>\n\n\n\n<p>We forget how incredibly dysfunctional it is to sit there and type all day. If we can just take away all the typing. I have a gym membership because my body&#8217;s falling to pieces because I have to sit there and move my fingers and unblinkingly for like seven hours a day. It&#8217;s ridiculous. It&#8217;s torture. Can AI make that go away? That&#8217;d be amazing. What a revolution.</p>\n\n\n\n<p>And so we sort of think about this in terms of jobs as if there&#8217;s some fixed number of jobs and the AI&#8217;s going to take them. And then there&#8217;s going to be no jobs to replace them. We don&#8217;t really think about it holistically, in this sense of if it&#8217;s doing all that work it&#8217;s producing huge economic value and unlocking human potential.</p>\n\n\n\n<p>[00:20:48] <strong>Nathan Wrigley:</strong> One of the things that really has sort of crept up is the use of the word intelligence. So we&#8217;ve got AI, artificial intelligence. I&#8217;m not entirely sure that, at the moment, is really the right word to be deploying, because that is a fairly scary word.</p>\n\n\n\n<p>You&#8217;ve seen films going back half a century or more where some kind of intelligent cyborg, something created by a human being at least, Frankenstein onwards, is able to outthink humans and therefore wreak havoc and so on and so forth. But my understanding is that the implementations that we are broadly using, ChatGPT and so on and so forth, are based on these large language models.</p>\n\n\n\n<p>It would be interesting to get into the weeds of that if you&#8217;re willing. Can you explain how that technology works and why perhaps it&#8217;s more of a fluke that it gets anything right? Well, that&#8217;s not true. It&#8217;s not really intelligent in the sense that you or I would subscribe to a human, but it appears, it masquerades as intelligent.</p>\n\n\n\n<p>[00:21:48] <strong>Dan Walmsley:</strong> Right. That&#8217;s very true. So, I&#8217;ll try to make this brief but accessible to people who might not have heard this explained before. There was a paper came out, I think it was around 2017, might have been earlier from Google, called Attention is All You Need. And that was the paper that described an architecture called transformers. Where you could feed in a sequence of text that they would turn into these tokens representing, not quite a character, not quite a word, but a numeric string of stuff representing the text.</p>\n\n\n\n<p>And then it would be able to predict the next word with a pretty high degree of accuracy, based on paying selective attention to the previous words. So we all know that words like and, or, or not, aren&#8217;t always salient but then there&#8217;s other words that are sort of really important to the text.</p>\n\n\n\n<p>It gets really good at picking up genre and tone and language. It&#8217;s important to note that ChatGPT was never trained to speak English. It was Hindi or anything else. It was just fed huge amounts of text, and they hide a piece of the text and say, can you guess what that is? And if you do that enough times with this selective attention model, then you end up with a system that is very good at continuing text where you left off.</p>\n\n\n\n<p>Now this by itself is what they call a foundation model. It&#8217;s not that useful. The only thing that really does well is generate plausible sounding text. So if you start something that looks like a scientific paper, it will continue. If you start something that looks like a poem, it will continue.</p>\n\n\n\n<p>So, once you have that foundation model, it&#8217;s not very useful for chat. It will go off the rails. Because it turns out, as soon as a transformer introduces one mistake into its output. Let&#8217;s just say it&#8217;s producing an output and it changes somebody&#8217;s name from Bob to Bill. It will continue to refer to them as Bill, even if it knows in its heart of hearts the correct answer is Bob, because all it&#8217;s trying to do is be as plausible as possible. Ah, I said Bill, I better stick with Bill. Or I said, up is down, I better continue with up is down.</p>\n\n\n\n<p>I did about eight years of improv. It&#8217;s like an improviser in that respect. And in fact, that was one of the first things I used it for was generating scripts and improv things. Little musicals and stuff. Because it can take an absurd premise and run with it. So you give it an absurd premise like bogans in space, that&#8217;s a very Australian reference. It will generate the most plausible script it can for bogans in space. And that&#8217;s wonderful if what you&#8217;re doing is trying to create sort of a fantasy thing, but it&#8217;s less wonderful if you&#8217;re trying to do something grounded.</p>\n\n\n\n<p>And so then they go through these various alignment processes where they feed it a huge amount of handwritten, curated, expert questions and answers on top of that whole internet that they fed it in the first place. And these are supposed to be illustrative of, I&#8217;ve got a question, I need a step by step answer that is clear and concise. And I also need it to refuse to tell me how to make a chemical weapon and other things like that.</p>\n\n\n\n<p>So there&#8217;s some safety stuff there where you look at examples of people asking for malicious things. It&#8217;s crazy. I asked it to tell me a joke the other day, an Irishman, Englishman, American joke, right? And so ChatGPT refused to generate it. Because well, I can&#8217;t make a joke about people based on specific aspects of their race or whatever. Which is sort of like, fair enough in the general case but also weird in the context of me just wanting that joke for myself to see what it could do. That&#8217;s the kind of alignment stuff that they&#8217;ve put in.</p>\n\n\n\n<p>And so finally what you get at the end of the day after a few more steps, is a model that has a little background thing where developers can align the model. Has all these different safety mechanisms. Has the ability to spell out instructions step by step,. Avoids as much as it can certain mistakes that would lead to it repeating itself or hallucinating too much. And has the ability to recognize now and use tools that accept JSON structured input as part of its cognition. That&#8217;s the latest level of alignment that they&#8217;ve introduced. And in the future there&#8217;ll be more and more as it gets bigger and more capable.</p>\n\n\n\n<p>[00:25:31] <strong>Nathan Wrigley:</strong> So the fact that we&#8217;re on GPT4 at the moment, we&#8217;re recording this in June 2023. We&#8217;re on GPT4, and prior to that there was GPT3. And I think everybody can agree that each iteration is better. But the way that the technology is structured at the moment, will each version in the large language model, the token version that you described, the transformer model, will that simply get better at creating fewer and fewer mistakes?</p>\n\n\n\n<p>Or are we approaching something which we could point to and say okay that now really is intelligent? In other words, are we heading towards a general intelligence? An AGI where we can now no longer disassociate it from being a human. It can come up with its own incentives, its own reasons to do things and then figure things out all by itself, based upon no human input whatsoever?</p>\n\n\n\n<p>[00:26:18] <strong>Dan Walmsley:</strong> Yes. When I think of an AGI, I think of an autonomous AGI, right? Where it&#8217;s HAL 9000. I don&#8217;t really know when that will happen. And I don&#8217;t know if it&#8217;s a great idea necessarily. I think in between here and there, there&#8217;s like a huge amount of work to be done to bring this technology to life in ways that help people with their work.</p>\n\n\n\n<p>It&#8217;s one thing to switch tabs and go to ChatGPT and type, write me a program that does x or y. It&#8217;s another thing to have GitHub Copilot living in the editor, which is an absolute game changer. And I suspect what&#8217;s coming next is AIs that work with your programmers and produce pull requests, or patches on pull requests, that fix linting or reduce complexity.</p>\n\n\n\n<p>For example, I would pay at least $10,000 a month for an AI that comes in and reduces the complexity of the code that our teams write every single day. Finds methods that shouldn&#8217;t be there. Renames things to more align with each other. Move stuff between classes, and documents things publicly. Maybe pings developers if it&#8217;s not sure something&#8217;s useful anymore. Can you just imagine? Because not only is that cleaning up the code, it&#8217;s reducing the number of developers you want, it&#8217;s removing one of the most annoying things about being a developer.</p>\n\n\n\n<p>So it&#8217;s making your job as a developer more pleasant. It&#8217;s not like it&#8217;s inventing new stuff, but it&#8217;s making it so much easier to invent new stuff because you&#8217;re working on super clean, minimal code that only does what you need it to do. And now just imagine if every company had that, how much progress we would see.</p>\n\n\n\n<p>[00:27:46] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s interesting isn&#8217;t it because at the hub of that is, it almost feels like if you paid that $10,000, a large proportion of your team have to go away. Because probably a significant proportion of the team is people going in and cleaning things up and what have you.</p>\n\n\n\n<p>[00:27:59] <strong>Dan Walmsley:</strong> Does it work that way though? Because let&#8217;s just imagine that somebody is on my team. Unless your company is losing money, right? Large amounts of money, and you&#8217;re desperately looking for some way to cut, right? If you have a programmer on your team and you can give them this tool and they become four times as productive. Then why would you want fewer programmers? Every programmer you add is four new programmers.</p>\n\n\n\n<p>I don&#8217;t think this is going to result in people being fired en masse. People look around at Silicon Valley right now, there&#8217;s a lot of companies copying the Elon Musk strategy of, oh boy we just realized that we need to trim the fat. Over the long term, I don&#8217;t know if that necessarily means fewer programmers. Although I do think more people will get to be a programmer.</p>\n\n\n\n<p>My dream is that every human being has their own open source stack that is completely proprietary to them. That is built and managed by an AI that is completely personal to them. Runs on a device that they own and control.</p>\n\n\n\n<p>And so then you can simply describe how you want your life to be, and your personal software stack adapts and makes sure that I only see the information that is valuable and actionable to me. And because of this AIs role in my life, I&#8217;m able to get insights about what&#8217;s really working, and avoid distractions and nobody will ever be able to spam me again.</p>\n\n\n\n<p>I actually literally am building an AI that scrapes the bajillion inscrutable emails from the school and plucks out the things that actually need to go in my calendar. It&#8217;s easy now, right? It&#8217;s 50 lines of code. And I can do the same thing for other digital parts of my life and just make that whole thing go away.</p>\n\n\n\n<p>[00:29:29] <strong>Nathan Wrigley:</strong> Yeah, I think there&#8217;s three places to sit on this seesaw. There&#8217;s either I&#8217;m terrified by AI, or I&#8217;m really pro AI, or I think where I&#8217;m finding myself at the minute is more in the middle. There are parts of it that I can see which clearly have enormous utility, and are really going to put us on a rocket ship to Mars if you like.</p>\n\n\n\n<p>There&#8217;s just no downside, but I think there is a part of me which does genuinely worry about the incentives. Whether or not it&#8217;s a great idea to automate all the things. Whether the landscape is just going to become flooded by noise, which actual humans can&#8217;t go through. So we then have to employ more AI to figure out how to get rid of the fake content. I&#8217;m not a hundred percent sold on it. I can certainly see there&#8217;s bits of it which have benefits.</p>\n\n\n\n<p>However, I&#8217;ve just come back from WordCamp Europe and part of the final address, we had Matt, Josepha and Matias on stage. And Matt is clearly very, very bullish about AI. In the same way that five years ago he was telling everybody to learn JavaScript deeply. I think the lasting message I got certainly from that presentation was start using AI deeply. Obviously you&#8217;re an Automattician, what he says matters. I&#8217;m just wondering, just to bring it back to WordPress, I&#8217;m wondering where we are going to begin to see AI in our WordPress sites? What are the kind of places where we may see it surfacing in the future?</p>\n\n\n\n<p>[00:30:51] <strong>Dan Walmsley:</strong> Yeah, I&#8217;m going to start with the quote from Matt, learn AI deeply. We don&#8217;t really know where AI is going to go but we see a certain rate of progress. And it&#8217;s faster than Moore&#8217;s Law. And so if you use an imperfect AI tool today and you get familiar with it and fluent with it, let&#8217;s just say GitHub Copilot. You can be pretty sure that tool will accelerate in progress over time. Because it&#8217;s already an AI tool that&#8217;s like standing on the shoulders of this like industry. So it&#8217;s going to get faster, it&#8217;s going to get better.</p>\n\n\n\n<p>The people who don&#8217;t embrace AI are going to continue on their linear or plateau trajectory. And so I feel like any human being alive today should probably start embracing some piece of AI in their life so that they can get a sense for how it&#8217;s shifting and changing and improving. So if it&#8217;s just a matter of using ChatGPT to like make plugin snippets, oh it&#8217;s good at this, it&#8217;s not good at that. Make it a habit. Then you&#8217;ll bear witness to what&#8217;s going on and you&#8217;ll know where to jump both feet into the stream and start leveraging this stuff more at scale.</p>\n\n\n\n<p>In terms of where we&#8217;re going to see it show up in WordPress. I was on a panel recently and one of the things that I said was, a question worth asking is what content management system would an AI choose? If you&#8217;re an AI and you&#8217;ve been asked to create a website for someone and you haven&#8217;t been told what technology to use, would you use WordPress?</p>\n\n\n\n<p>And the answer today is, probably. Because most of the public documentation for content management systems is WordPress documentation. So the AI has access to like 20 years of all this stuff. And that&#8217;s really, really powerful. It means it can reason about WordPress in a really impressive way.</p>\n\n\n\n<p>It&#8217;s actually a great testimony to keeping WordPress roughly the same all of that time with minimal breaking changes. Because, you know, one of the things that I&#8217;ve noticed is there are lots of breaking changes between libraries in the Python ecosystem. And that means that ChatGPT very rarely writes working Python code for me. I have to modify it to use the latest API or whatever. It almost always produces working PHP WordPress code, because what works hasn&#8217;t changed, which is quite amazing.</p>\n\n\n\n<p>[00:32:58] <strong>Nathan Wrigley:</strong> I mean, that is actually phenomenal to see that happen.</p>\n\n\n\n<p>[00:33:01] <strong>Dan Walmsley:</strong> Yeah. Now we have to capitalize on that, but that&#8217;s a really great start. And you know what CMS would an AI choose, okay it&#8217;s one that it&#8217;s familiar with. And then the next level is, well it would be one where you can modify it and extend it easily. WordPress certainly checks that box to infinity, right? There&#8217;s all of these existing plugins and an AI can read the documentation of plugins and choose one for you or whatever it needs to do.</p>\n\n\n\n<p>So the plugin mechanism is amazing because you can basically take a statement that someone makes about how they want their website to be different, and turn it into a function that runs a bunch of hooks.</p>\n\n\n\n<p>It doesn&#8217;t have to go modifying the existing code of WordPress and forking it. It can just like inject the things that you ask it for, and correlate them back to the statements that you made. And in the future if it finds out that there was a better way to implement that request then it can implement it differently. Because it has the original things you asked for. So that&#8217;s one way I think I see AI helping with WordPress over time. Not that that&#8217;s a product that I&#8217;ve built I&#8217;m just sort of reasoning broadly about it.</p>\n\n\n\n<p>[00:33:59] <strong>Nathan Wrigley:</strong> I think one of the areas that I really would like to see is the ability to leverage what&#8217;s just come around. I&#8217;m really excited about blocks and block patterns in particular. I&#8217;m quite a visual person, so I love to see images of what I&#8217;m about to get. And the idea of, I don&#8217;t know, I want to build a website for a local industry. A real estate agent, a lawyer or something like that. And the AI has some kind of interpretation of what that means. It probably has a little understanding of the geography of where I live and what kind of imagery might go into a website like that.</p>\n\n\n\n<p>I live on the coast and there is some things which people always take pictures of and they often end up on websites for the places where I live. But also it understands typically what a lawyer is, you know? And it would understand that, okay, you probably need a page that has this on it, and a page that needs this on it, and probably a form and blah, blah, blah.</p>\n\n\n\n<p>And then it would just throw at me, I don&#8217;t know 100, 200 designs, something like that, that I can look at. And because of the fact that it&#8217;s all built with blocks I could input that pattern, and then start to tweak things as I like it. I just love the idea of the choice that it might be able to give me, and short circuit, I mean me building 200 different designs, that&#8217;s going to take me weeks. This potentially could happen in the blink of an eye and I love that choice.</p>\n\n\n\n<p>[00:35:13] <strong>Dan Walmsley:</strong> Yeah. Think about a few years ago, if you had like a site generator versus a site builder, right? So let&#8217;s just say I generated a site and we&#8217;ve all be familiar with site generators, you give it like, what kind of color scheme you want and what kind of industry you&#8217;re in and kind of thing.</p>\n\n\n\n<p>And this has been possible for 10 or 20 years that you can generate a site. But the problem is, okay, now you&#8217;ve generated a site and then you make some content and you&#8217;re like, ah, I want to change that one decision. Well you can either regenerate it from scratch and blows away everything you&#8217;ve done. Or you can try and manually make the change, but you have no idea how to do that because you didn&#8217;t build it in the first place. And then you&#8217;re going to learn the whole system.</p>\n\n\n\n<p>That sort of like magic trick of generating the site back in the day is the thing you can only do once. But in the copilot era, which I think Microsoft correctly identified this paradigm. You can jump in and out of automating the site creation experience as much as you want. And so the idea is, okay, I&#8217;m going to generate the content on this page. Jetpack AI block is actually really, really good at this. I&#8217;m not here to like boost our products too much. But it&#8217;s like a really good example.</p>\n\n\n\n<p>You can generate a page and then you can just change the tone of voice. And it will go and take the same content and change the tone of voice, non-destructively, you know what I mean?</p>\n\n\n\n<p>And so the AI is able to work with whatever changes you&#8217;ve already made and make some more. I think that that&#8217;s going to be the paradigm for a long time. And anybody building AI tools needs to be very careful about building the UI in such a way that it takes these hints from the human. And uses them to make the AI better over time. Better at getting the first guess right.</p>\n\n\n\n<p>And any company that does that is going to have an AI flywheel. And any company that just generates content directly but doesn&#8217;t measure how the users respond to it or interact with it or change it over time is going to be stuck on a plateau, with no way to get to the next level.</p>\n\n\n\n<p>[00:37:04] <strong>Nathan Wrigley:</strong> I really find the whole idea of that curious. Literally you could go to bed one night, wake up in the morning and the AI has decided that we&#8217;ve gathered lots of data and well you had a real blitz of users during the course of the night and it&#8217;s really shown us that no, they don&#8217;t like this bit, so we&#8217;ve changed it entirely on your behalf. So it&#8217;s like split testing but on steroids.</p>\n\n\n\n<p>That seems like a really interesting idea. Obviously people will not wish to hand some aspects of that over but if you can prove that a WooCommerce sale, for example, this configuration of a checkout system seems to be 20 times more popular than this one. Okay, we&#8217;re going to get rid of that one. Now we&#8217;re going to start working our way through whether we can improve this one. All of that seems to be a bit of a no-brainer.</p>\n\n\n\n<p>[00:37:47] <strong>Dan Walmsley:</strong> Yes. Building an awareness of when humans need to make discriminating decisions, and when you can make them on their behalf. And the product design aspects of what expectations do you set about what&#8217;s going to happen, or whether it&#8217;s reversible, or whether it requires confirmation or authentication or et cetera, et cetera. Taking a backup.</p>\n\n\n\n<p>That&#8217;s all stuff that you don&#8217;t get for free with AI. That&#8217;s all the infrastructure of actually making it useful. And I will say the AI itself is dead simple to use, right? it&#8217;s conceptually unbelievably easy. 99.99% of the work is just like aligning the whole rest of the system around it so that you can make sure that customers have a good experience.</p>\n\n\n\n<p>The normal stuff of building products, right? Setting expectations, all these different things. It feels different because watching a generative AI talk like a person is weird, but it&#8217;s not, it&#8217;s not work that requires you go do a deep learning course.</p>\n\n\n\n<p>The thing that is transformative about this is it&#8217;s generality. These techniques have existed for years. We&#8217;ve always been able to classify, well, not always, for a long time been able to classify images for a long time been able to sort of grammatically parse out text or detect languages or sentiment or other things.</p>\n\n\n\n<p>But they were all specialized models with vast data sets. And now you can fine tune it on 500 of your own examples and have it go answering entire support requests straight out of your knowledge base. And so it&#8217;s that generality that is really powerful.</p>\n\n\n\n<p>[00:39:13] <strong>Nathan Wrigley:</strong> I&#8217;m curious to see what the UI for all of these different things are going to be in the future. In the sense that, you know, if you look at WordPress from when you began using it, it&#8217;s a very different animal. Although it hasn&#8217;t changed dramatically in the last five or six years. When you began using it, it was a different animal to the way it looks now.</p>\n\n\n\n<p>And then these sort of page builder technologies came along and further democratized publishing and made things easy and it was a point click interface. I&#8217;m just curious to see how, what the pieces are that live inside WordPress. Whether it&#8217;s going to be text input. Whether we&#8217;re just going to start talking to our website and, you know, move it left a bit, a little bit more, make it red. Not that red, the other red.</p>\n\n\n\n<p>I want a picture of a, I don&#8217;t know, a sausage over there, that kind of thing. How all this gets surfaced. We&#8217;re obviously in the era of trying to get everybody to use Gutenberg. Whether it fits into there or whether we need a brand new interface because the AI will just take care of everything. That bit is for me going to be really interesting.</p>\n\n\n\n<p>[00:40:06] <strong>Dan Walmsley:</strong> Yeah. I&#8217;m really excited to see what happens with Gutenberg. I&#8217;m completely convinced Gutenberg will not go away. And actually AI makes Gutenberg look like a better and better decision versus the classic editor as AI comes into view.</p>\n\n\n\n<p>[00:40:21] <strong>Nathan Wrigley:</strong> Can you develop on that? I think I know what you mean but I want to hear what you mean. Yeah.</p>\n\n\n\n<p>[00:40:25] <strong>Dan Walmsley:</strong> So having things embedded as blocks with parameters provides a much more semantically rich interface than just a bunch of HTML. It&#8217;s similar as to how we see markdown used a lot more in AI than HTML as a formatting language, input, output. And why is that?</p>\n\n\n\n<p>Well, it&#8217;s because the structure tells you something about the meaning of the document, right? This is a table, this is an image, this is a whatever. Obviously you get an HTML but more sophisticated than that, right? This allows the AI, so say you&#8217;ve got like a cover block with an image and a text. This allows the AI to have some confidence about how that&#8217;s going to appear when it shows up on a webpage.</p>\n\n\n\n<p>As opposed to arbitrary HTML that may be pulling in CSS from various places and like all that kind of stuff. Gutenberg provides an incredible foundation for collaboration. And collaboration is key, right? If we&#8217;re talking about the copilot era here, I don&#8217;t think for a long, long time we&#8217;re ever going to have necessarily AIs. Like you&#8217;re not going to have a CMS come out that like, doesn&#8217;t have an editor, because it just has a chat interface. You tell the AI what to do and hope that it does the right thing.</p>\n\n\n\n<p>Like that&#8217;s not going to be the case for a really, really long time, if ever. What you need is an editor where you can seamlessly collaborate with an AI. And if I was to take Matt&#8217;s words and bring them back into the conversation about learning AI deeply, I would love to see people in the community experimenting with UX concepts for collab.</p>\n\n\n\n<p>We are in the collaboration phase. Now is the time to start bringing your ideas to the table about what it looks like to collaborate with an AI in Gutenberg and how revolutionary that could be.</p>\n\n\n\n<p>[00:42:01] <strong>Nathan Wrigley:</strong> Are you open to those conversations? Is your team keen to hear from the community? And if that&#8217;s the case, where do we go to begin that conversation?</p>\n\n\n\n<p>[00:42:08] <strong>Dan Walmsley:</strong> That&#8217;s all happening in the open source community. I&#8217;ve had a couple of conversations with Matias or others, but really at a high level. I think it&#8217;s the community that needs to help drive that. We&#8217;ve shown what&#8217;s possible with Jetpack AI. It&#8217;s like the first quickest, most sane thing we could build.</p>\n\n\n\n<p>But in terms of the collaboration phase, my team is aligning the AI efforts of a large multinational corporation across many, many, many different modalities. Not just in the editor, but across image classification, and trust and safety, and all sorts of other things.</p>\n\n\n\n<p>On a day-to-day basis I don&#8217;t have a huge amount of bandwidth for one thing like the Gutenberg editor but I really encourage the community to get involved and share ideas.</p>\n\n\n\n<p>[00:42:53] <strong>Nathan Wrigley:</strong> Yeah. I&#8217;ll put links to the presentation that you were involved in, with, I know it was at least Anne McCarthy. I can&#8217;t remember who the other contributors were now but that was really fascinating. Interesting kind of first steps in, well, tell us what we want out of AI because we can see what it can do out in the wild with other things. You mentioned co-pilot and there&#8217;s obviously ChatGPT and all fun images that you can create with mangled fingers.</p>\n\n\n\n<p>Interesting to find out what the community want from it. How it will look in two or three years time? And getting involved in that conversation could really impact the project right now.</p>\n\n\n\n<p>[00:43:25] <strong>Dan Walmsley:</strong> I would also say, dark horse here, but I would love to see more people get involved in WordPress Playground. So for those don&#8217;t know, WordPress Playground they demoed it last year and I was actually in the room in New York for the WordCamp US there.</p>\n\n\n\n<p>[00:43:38] <strong>Nathan Wrigley:</strong> That is some astonishing tech.</p>\n\n\n\n<p>[00:43:41] <strong>Dan Walmsley:</strong> It is game changing. I mean, and it&#8217;s funny because it&#8217;s on the one hand you could look at it and be like, well, this is like a cute hack, but it&#8217;s you know, you would never run a website this way. But think about it, if you&#8217;re a person creating or modifying or wanting to come up with a new website. With no hosting, with no nothing, just sitting there like running a blob of JS in the browser.</p>\n\n\n\n<p>You can ask an AI to generate the entire site and remix it and destroy it and build it again, and like when you&#8217;re happy enough with it, click a button to download and put it on a real web host. It&#8217;s lowering the barrier to entry. And I can imagine if we get lots of good contributions, there&#8217;s already really good JavaScript API access for saying, install this plugin, or like, modify this file, right?</p>\n\n\n\n<p>And so if you go a step further, oh, generate an AI block that does X, Y, Z, right? And if you&#8217;re a developer that doesn&#8217;t already have WordPress or know WordPress, and you don&#8217;t have to pull down PHP, you don&#8217;t even have to write PHP. You have this like ephemeral WordPress in the browser and you can see what it&#8217;s capable of.</p>\n\n\n\n<p>I think that could bring so many potential developers into the WordPress community. Who are able to see what&#8217;s possible, have this low barrier entry, who have zero dependencies and can provide plugins and blocks and other cool ideas into the WordPress community who might not have had a chance to contribute before.</p>\n\n\n\n<p>[00:44:56] <strong>Nathan Wrigley:</strong> It&#8217;s amazing when you actually use it because you just assume that there&#8217;s a machine somewhere remotely that&#8217;s serving up that website and it just spun it up in a heartbeat. But of course it&#8217;s not. You can entirely unplug from the internet and there it is. It&#8217;s still working. And it took all of no seconds at all to get the whole thing going. It&#8217;s amazing.</p>\n\n\n\n<p>[00:45:17] <strong>Dan Walmsley:</strong> Yeah, it really is.</p>\n\n\n\n<p>[00:45:19] <strong>Nathan Wrigley:</strong> I will link to that as well. Yep.</p>\n\n\n\n<p>[00:45:21] <strong>Dan Walmsley:</strong> I hope that becomes the way that a lot of people build stuff on WordPress actually. It is a playground. It&#8217;s really fun. It reminds me of when I was playing with the first version of WordPress. But it&#8217;s just accessible to vastly, vastly more people. You know, anyone with a web browser?</p>\n\n\n\n<p>[00:45:35] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s kind of like having a blank piece of paper next to you, one of a thousand bits of paper that you can just scribble on and screw it up and throw it over your shoulder and, okay, that didn&#8217;t work. Let&#8217;s try again. We&#8217;ll just blank canvas, start again. And actually, I don&#8217;t know if you did see the address that Matt gave at WordCamp Europe. That was one of the other things he discussed. So you are very much in alignment.</p>\n\n\n\n<p>[00:45:54] <strong>Dan Walmsley:</strong> It&#8217;s in my queue.</p>\n\n\n\n<p>[00:45:56] <strong>Nathan Wrigley:</strong> Okay. Well, sadly, I mean, I could honestly talk about this with very little authority for hours and hours and hours. But we&#8217;ve probably used up our allotted time.</p>\n\n\n\n<p>Dan, if anybody wants to reach out to you specifically, do you make yourself available in that way? And if so, where do we find you? Are you a Twitter fan? Or are you on, you know, you&#8217;re going to throw an email in our direction or a Slack channel? Let us know.</p>\n\n\n\n<p>[00:46:17] <strong>Dan Walmsley:</strong> Well, you can reach me on Twitter. Twitter.com/danwalmsley. d a n w a l m s l e y. It&#8217;s a tricky one. And, that&#8217;s a start.</p>\n\n\n\n<p>[00:46:28] <strong>Nathan Wrigley:</strong> Perfect. Well, thank you so much for chatting to us today about AI. I&#8217;m just sorry that I, uh, I can&#8217;t kind of keep up with the level of intelligence that&#8217;s probably required to make this conversation worth while, but I appreciate it.</p>\n\n\n\n<p>[00:46:40] <strong>Dan Walmsley:</strong> I super appreciate being on the podcast. I&#8217;m really, really excited about the next couple of years. And especially for WordPress. I think we&#8217;ve got like a lot of strengths that if we leverage them, can put us in an amazing position to empower a lot of people to, you know, publish and to continue to democratize publishing.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://twitter.com/danwalmsley\">Dan Walmsley</a>.</p>\n\n\n\n<p>Dan is a long-time user of WordPress, having started using it even before version one was released. With a passion for experimenting with different publishing platforms, Dan eventually discovered WordPress and has been using it ever since. Currently working at Automattic as a Code Wrangler, Dan is part of the Applied AI team. Although the team is relatively new, with only a few members, their mission is to coordinate and guide the various AI initiatives within the company. Recently, he has been focusing on automating internal workflows and communications, a particularly crucial aspect given the distributed work setup, which spans 70 countries and multiple time zones.</p>\n\n\n\n<p>We start the conversation talking about Dan’s background. He’s recently decided that AI is a truly transformational technology and so has taken steps to learn the skills needed to understand and implement it.</p>\n\n\n\n<p>Dan talks about how Large Language Models work, and how ChatGPT has driven awareness, and demand, for AI technologies in a way that was almost impossible to predict just a year ago. This has caused many companies to become deeply interested in AI and what it can do for their business workflows.</p>\n\n\n\n<p>We get into whether the reality of AI can live up to the hype. Do we have enough understanding of AI to know what its impact will be on the workplace, or are we just in the middle of a media frenzy which will die down over time? Dan challenges the notion that AI will take many of our jobs, and emphasises the economic value that AI can bring.</p>\n\n\n\n<p>We move on to explore the differences between site generators and site builders, and Dan introduces the concept of the ‘copilot era’ in which website creation can be somewhat automated. He highlights tools like Jetpack AI which can generate content and modify the tone of voice right inside of WordPress.</p>\n\n\n\n<p>Dan stresses the importance of building AI tools with user interfaces that learn from human input in order to improve over time. He thinks that companies which measure user responses and interactions will gain a significant advantage in AI development, while those who fail to improve their AI content generation will be left behind.</p>\n\n\n\n<p>Whether you’re new to AI or have been paying attention for a while, this podcast offers a fascinating insight into its impact on society, and how it can accelerate progress in fields like scientific research.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://movabletype.org/\">Moveable Type</a></p>\n\n\n\n<p><a href=\"https://automattic.com/\">Automattic</a></p>\n\n\n\n<p><a href=\"https://docs.langchain.com/docs/\">LangChain</a></p>\n\n\n\n<p><a href=\"https://openai.com/\">OpenAI</a></p>\n\n\n\n<p><a href=\"https://www.typescriptlang.org/\">TypeScript</a></p>\n\n\n\n<p><a href=\"https://www.andrewng.org/courses/\">Andrew Ng&#8217;s Deep Learning course</a></p>\n\n\n\n<p><a href=\"https://dayoneapp.com/\">Day One</a></p>\n\n\n\n<p><a href=\"https://woocommerce.com/\">WooCommerce</a></p>\n\n\n\n<p><a href=\"https://senseilms.com/\">Sensai</a></p>\n\n\n\n<p><a href=\"https://www.deepmind.com/\">Google Deep Mind</a></p>\n\n\n\n<p><a href=\"https://en.wikipedia.org/wiki/Perplexity\">Perplexity</a></p>\n\n\n\n<p><a href=\"https://stability.ai/stablediffusion\">Stable Diffusion</a></p>\n\n\n\n<p>Google&#8217;s &#8216;<a href=\"https://arxiv.org/pdf/1706.03762.pdf\">Attention is all you need</a>&#8216; paper</p>\n\n\n\n<p><a href=\"https://github.com/features/copilot\">GitHub Copilot</a></p>\n\n\n\n<p><a href=\"https://jetpack.com/ai/\">Jetpack AI</a></p>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=rWH6Z6cJe5o\">AI and the future of WordPress</a> &#8211; Panel session</p>\n\n\n\n<p><a href=\"https://developer.wordpress.org/playground/\">WordPress Playground</a></p>\n\n\n\n<p><a href=\"https://twitter.com/danwalmsley\">Dan&#8217;s Twitter</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Aug 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"WPTavern: Jetpack Launches Newsletter Product\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147385\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wptavern.com/jetpack-launches-newsletter-product\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6345:\"<p><a href=\"https://jetpack.com/blog/jetpack-12-4/\">Jetpack 12.4</a> was released today, launching the plugin&#8217;s <a href=\"https://jetpack.com/blog/introducing-jetpack-newsletter/\">Newsletter product</a>. It allows users to send blog posts as newsletters, without the hassle of having to copy and paste from the WordPress editor into another newsletter service&#8217;s campaign editor and reformat it for email. This launch comes seven months after <a href=\"https://wptavern.com/wordpress-com-launches-newsletter-product\">WordPress.com launched its newsletter offering</a>, which uses the same underlying infrastructure to deliver emails.</p>\n\n\n\n<p><a href=\"https://jetpack.com/newsletter/\">Jetpack Newsletter</a> is launching as a free product, with a percentage of fees collected from creators who choose to offer paid subscriptions:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Fees are only collected when you accept payments. Fees are based on the Jetpack plan you have and are calculated as a percentage of your revenue from 10% on the Free plan to 2% on the Complete plan (plus Stripe fees). </p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1262\" height=\"844\" />\n\n\n\n<p>Jetpack users are probably familiar with the plugin&#8217;s ability to send posts to subscribers via email. The newsletter feature uses this <a href=\"https://jetpack.com/support/subscriptions/\">same infrastructure</a> that site owners have relied on for years to allow subscribers to get updates in their inboxes when new posts are available.  </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1560\" height=\"688\" />\n\n\n\n<p>Newsletters can be turned on under the Discussion tab in the Jetpack settings. Many Jetpack users likely already have this turned on.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1458\" height=\"596\" />\n\n\n\n<p>The Subscribe block can be placed anywhere on the site and new subscribers will be sent a confirmation email to confirm their subscription. They have the option to choose between instant, daily, or a weekly digest, as well as control the time and day they receive their digests. Subscribers can also pause or unsubscribe from the site.</p>\n\n\n\n<p>Subscriber import and other features, such as newsletter stats for opens and clicks, is available via the Jetpack admin pages on WordPress.com. </p>\n\n\n\n<p>At this time, newsletter creators can only import up to 100 subscribers via CSV file. This is severely limiting for all but the smallest of newsletters, but the Jetpack team has confirmed that it is high on their list of priorities to change as it creates too much of a barrier. The limit was set for spam prevention, but it makes it nearly impossible to migrate to Jetpack Newsletter if you have a popular newsletter. Those who are on paid plans can upload unlimited subscribers. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"2020\" height=\"1076\" />\n\n\n\n<p>Newsletter creators can change the site name and logo for their emails and paid users will have more customization options in the future.</p>\n\n\n\n<p>One thing that sets Jetpack Newsletter apart from the vast majority of other traditional email service providers is that it allows unlimited email sends and unlimited subscriber lists for both free and paid users. </p>\n\n\n\n<p>Most popular services like Mailchimp, Brevo, and SendGrid, allow only a few hundred emails to be sent per day or up to 1,000 per month for free users. Paid plans get expensive quickly as a newsletter&#8217;s subscriber base grows. Emails and subscriber numbers usually determine the pricing for these services, which makes Jetpack&#8217;s product stand out from the crowd, especially for those who intend to independently monetize their newsletter through ads and paid sponsorships.</p>\n\n\n\n<p>Jetpack Marketing Lead Rob Pugh said that although popular newsletter services are more limited in emails and subscriber numbers, they also offer a completely different feature set. The Jetpack Newsletter product is aimed at competitors like <a rel=\"noreferrer noopener\" href=\"http://substack.com/\" target=\"_blank\">Substack.com</a>, <a rel=\"noreferrer noopener\" href=\"http://beehiiv.com/\" target=\"_blank\">Beehiiv.com</a>, and <a rel=\"noreferrer noopener\" href=\"http://ghost.org/\" target=\"_blank\">Ghost.org</a>, which also all offer unlimited email sends. On paid plans, Jetpack Newsletter&#8217;s offer beats Substack, as it collects 2% (plus Stripe fees) as compared to Substack&#8217;s take of 10% plus credit card fees.</p>\n\n\n\n<p>Newsletter creators should be aware that Jetpack Newsletter&#8217;s unlimited emails and subscribers may not last forever, as the FAQ section of the product states that it is an introductory offer:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>As an introductory offer, we do not limit you or charge you based on your email list size. This may change in the future. Fair usage policy applies.</p>\n</blockquote>\n\n\n\n<p>Jetpack representatives were not able to confirm the limits of fair usage or how long the introductory period will last.</p>\n\n\n\n<p>&#8220;Launching without a limit on emails isn’t the most financially responsible thing, but we’re most excited to get this feature into the hands of people to get feedback,&#8221; Pugh said. &#8220;We’re focused on the immediate roadmap to make the product better, although there will likely be a limit at some point in the future if we see extreme use from people on free plans.&#8221;</p>\n\n\n\n<p>He said the Jetpack team goes out of its way to make pricing changes as fairly as possible &#8220;and we don’t want to pull the rug out from anyone, so we’ll certainly consider how people are impacted before making changes.&#8221;  </p>\n\n\n\n<p>Until the limited subscriber import issue has been solved, any pricing changes down the road are only likely to affect newsletters that are just starting out getting people signed up. Apart from this limitation, Jetpack Newsletter is making a competitive debut in the market. For those who are already using Jetpack and have an existing subscriber base, it makes it nearly effortless to add paid subscriptions. Using the block editor is far easier than most newsletter campaign editors out there, and Jetpack streamlines the sending process so creators don&#8217;t have to copy and paste between email services.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Aug 2023 22:24:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.org blog: WordPress 6.3 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15615\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/2023/08/wordpress-6-3-rc3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6189:\"<p>WordPress 6.3 RC3 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC3 on a test server and site.&nbsp;</p>\n\n\n\n<p>The WordPress 6.3 release is scheduled for August 8, 2023—just one week away. Now is your last opportunity to test it before the general release.&nbsp;</p>\n\n\n\n<p>For a deeper look into this release, read this overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, review <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>, or <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">watch a recorded demo</a>.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new since RC2</h2>\n\n\n\n<p>Since the RC2 release on July 25, 2023, there have been approximately 14 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Github</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=07%2F25%2F2023..08%2F01%2F2023&milestone=6.3&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Trac</a>. To prepare for 6.3 general availability, RC3 also addresses several <a href=\"https://github.com/WordPress/gutenberg/pull/53089\">bugs</a> and adds fixes for retrieving templates (<a href=\"https://github.com/WordPress/wordpress-develop/pull/4940\">#4940</a>) and resolving child theme issues (<a href=\"https://github.com/WordPress/gutenberg/issues/53138\">#53138</a>). Thank you for testing, WordPressers!</p>\n\n\n\n<p>Developers and extenders should review the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a> for detailed technical notes regarding new features and improvements.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Ways to contribute</h2>\n\n\n\n<p>WordPress is open source software made possible by the community of people collaborating on and contributing to its development. The resources below outline a variety of ways you can help, regardless of your technical expertise.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Download RC3 for testing</h3>\n\n\n\n<p>You can test WordPress 6.3 RC3 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2:</strong> Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC3.zip\">RC3 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3: </strong>Use the following WP-CLI command:<br /><code>wp core update --version=6.3-RC3</code></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Keep WordPress bug-free—help with testing</h3>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Search for vulnerabilities</h3>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Update your theme or plugin</h3>\n\n\n\n<p>Do you build themes or plugins? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>This is your final opportunity to test your latest versions against RC3. You will want to continue your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Help translate WordPress</h3>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a>&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p>Phase two, soon complete<br />A monumental release<br />Then onto six-four.</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/meher/\">@Meher</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">@DanSoschin</a>, and <a href=\"https://profiles.wordpress.org/jpantani/\">@jpantani</a></em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Aug 2023 16:55:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Do The Woo Community: Welcome Katie Keith from Barn2 Plugins to the Do the Woo Host Team\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75760\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://dothewoo.io/katie-keith-new-do-the-woo-host/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:446:\"<p>Today Marcus talks with his new co-host of Woo BizChat, Katie Keith, as she shares her Woo story and what you can expect from these two moving forward.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/katie-keith-new-do-the-woo-host/\">Welcome Katie Keith from Barn2 Plugins to the Do the Woo Host Team</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 01 Aug 2023 10:25:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: Start Testing WordPress’ New Interactivity API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147355\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wptavern.com/start-testing-wordpress-new-interactivity-api\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2510:\"<p>Earlier this year, WordPress contributors announced that they are <a href=\"https://wptavern.com/wordpress-contributors-propose-new-interactivity-api-for-frontend-blocks\">working on a new Interactivity AP</a>I that will allow developers to build interactive blocks. This API will support the kinds of frontend experiences that let visitors interact with content and get feedback without having to refresh the page.</p>\n\n\n\n<p>Automattic-sponsored contributor Luis Herranz, who has been working on the API, is now <a href=\"https://twitter.com/luisherranz/status/1686064632400658439\">encouraging developers to test it</a> with their own blocks. <a href=\"https://wptavern.com/gutenberg-16-2-brings-improvements-to-pattern-management-introduces-vertical-text-orientation\">Gutenberg 16.2</a> included the Interactivity API under the Experiments flag and this version or later is required for testing it.</p>\n\n\n\n<p>Developers can follow the API&#8217;s <a href=\"https://github.com/WordPress/gutenberg/blob/trunk/packages/interactivity/docs/1-getting-started.md\">&#8220;Getting Started&#8221; guide</a> on GitHub to scaffold an interactive block with `@wordpress/create-block`. Take a look at the <a href=\"https://github.com/WordPress/gutenberg/discussions/52904\">roadmap</a>, which has an extensive list of tasks the team has in mind for the initiative and will include tracking issues for features as they progress.</p>\n\n\n\n<p>Those who are testing the Interactivity API can follow and participate in the discussions happening in the new <a href=\"https://github.com/WordPress/gutenberg/discussions/categories/interactivity-api\">Interactivity API category</a> on GitHub. This early testing invitation is for those who are eager to help shape the API and offer feedback.</p>\n\n\n\n<p>&#8220;If you want to use the Interactivity API in your projects, please subscribe to this discussion where we will provide updates with instructions for migrating your code each time there is a breaking change,&#8221; Herranz said.</p>\n\n\n\n<p>There is no official documentation yet, but a the team is working towards creating a bare-bones version first which will be used as the base for the official docs further down the road. The documentation efforts are being led by Automattic-sponsored contributor <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> and anyone willing to collaborate is invited to <a href=\"https://github.com/WordPress/gutenberg/discussions/51928\">join the conversation on GitHub</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2023 21:38:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WordPress.org blog: People of WordPress: Ihtisham Zahoor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15589\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2023/07/people-of-wordpress-ihtisham-zahoor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:10231:\"<p>From administrator to web developer thanks to the supportive WordPress community. Through learning from other software users in Pakistan, Ihtisham Zahoor knew that his life would change. He moved cities and careers to make his life through open source.</p>\n\n\n\n<p><strong>The&nbsp;<em>People of WordPress</em>&nbsp;series shares inspiring stories of how people’s lives can change for the better through WordPress and its global community of contributors.</strong></p>\n\n\n\n<img width=\"1024\" height=\"768\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-2.jpg?resize=1024%2C768&ssl=1\" alt=\"Ihtisham Zahoor in the moutains.\" class=\"wp-image-15478\" />\n\n\n\n<p>Ihtisham, from Haripur, a city in northern Pakistan, said: “The WordPress community made me a firm believer in the power of open source software. This is why I am an enthusiast and one who enjoys contributing back to the community via writing, speaking, and helping organize meetups.”</p>\n\n\n\n<p>When Ihtisham discovered WordPress, his fascination for working with computing grew. He knew he did not want to just work in administration his entire career.</p>\n\n\n\n<p>Ihitsham describes himself as an ‘introvert’ and therefore the idea of remote work appealed as he could still add value to others through technology. He was intrigued by the thought of the freedom to choose his work hours. However, without access to others who had already transformed their careers and lives through web development, he felt he ‘had no path to follow to turn my dream into a reality.’</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Challenges become opportunities to learn when there is an active community&nbsp;&nbsp;</strong></h2>\n\n\n\n<img width=\"675\" height=\"900\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-4.jpg?resize=675%2C900&ssl=1\" alt=\"Ihtisham Zahoor wearing a sweatshirt with the London tube sign \'Mind the Gap\'.\" class=\"wp-image-15480\" />\n\n\n\n<p>Lacking any kind of informed support network to advise or guide him, Ihtisham devoted time to online research to find the next steps he could take. Looking back, he believes that for those who are not in a network with others with similar interests, it can be hard to keep learning and experimenting with new things. Isolation can be a barrier to working in web development.&nbsp;&nbsp;</p>\n\n\n\n<p>He said: “I think it is not easy to stay motivated when there aren’t immediate rewards for the hard work we do. Sometimes, weeks would go by when my only focus would be to stay motivated rather than give up.”</p>\n\n\n\n<p>After another two years of combining learning and work, Ihtisham took up using WordPress as a full-time career. He moved to the capital of Pakistan, Islamabad. It was not easy at first. He recalls: “After many failed attempts at getting hired and desperate moments, I finally received an offer from a digital agency as a web developer focused on the WordPress platform.”</p>\n\n\n\n<p>He added: “Moving to work with a bigger agency was one of the best decisions of my life as it helped me with my professional growth by becoming familiar with the whole WordPress ecosystem in a supportive environment. I was valued for my opinions in the web projects in which I was involved. I was also appreciated and encouraged for the open source work I did for the company.” He summarized his enthusiasm for WordPress like this: “It is really interesting figuring out what is happening in the backends. I like problem-solving and finding solutions which you can do with WordPress.”</p>\n\n\n\n<p>During the Covid-19 pandemic, Ihtisham moved to join a start-up based in his hometown which provides web development services to international clients. He works as a developer and has the opportunity to learn more about client communication and project management. “WordPress has opened up so many opportunities for me. It has been an exciting journey for me with lots of learning every day,” he said. In particular, he has discovered an interest in APIs and regularly uses his spare time to follow tickets in the hope of one day contributing even more to topics, such as, third-party app integration through APIs on WordPress sites.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Give back through WordPress community</strong></h2>\n\n\n\n<img width=\"800\" height=\"599\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-1.jpeg?resize=800%2C599&ssl=1\" alt=\"Ihtisham Zahoor speaking at a meetup.\" class=\"wp-image-15477\" />\n\n\n\n<p>It was not just software that made a difference in Ihtisham’s life. Joining a welcoming and sharing community was transforming for him. Recalling those early days of isolation, he values the WordPress community and is wholly committed to the power of open-source software. He now enjoys writing, speaking, and organizing meetups to give back to both to the community. He has written software for the platform and contributes to the Core work, which he describes as a ‘humbling’ experience. He is fond of <a href=\"https://islamabad.wordcamp.org/\">WordCamp Islamabad</a> and in 2023 is on the organizing team to help bring both WordPress and its community to others in Pakistan.</p>\n\n\n\n<p>“My first experience,” he said, “was that everyone was so friendly and open to sharing what they have learned, even though they were all busy working. This really had an impact on me. It really helped me and gave me the confidence that I could work with WordPress…. It was a real step forward for me joining this community.” </p>\n\n\n\n<img width=\"1024\" height=\"512\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/ihtisham-WC-Karachi.jpg?resize=1024%2C512&ssl=1\" alt=\"Ihtisham visited WordCamp Karachi.\" class=\"wp-image-15482\" />\n\n\n\n<p>A particular meeting in 2018 led to new friendships through the WordPress community. Ihtisham was on a train to Karachi for the first ever Pakistani WordCamp in 2018 and met a group of fellow attendees he now regards as close friends. What impressed him most about the camp was that although he met many people with considerable expertise, they also had a generosity of spirit and humbleness in their willingness to share this knowledge. in sharing it. Now, he and this group of friends make a point to taking trains across the country, which allows him to fulfil another dream of traveling widely. He says these things and other ‘side benefits’ have been made possible by the WordPress community, and for that, he is &#8216;forever grateful&#8217;.<br /><br />Ihtisham particularly wanted to share his story through this People of WordPress article to encourage those starting with little or no support to remain persistent. He knows from experience breaking into the tech world can be hard, especially when you may be switching from doing something else and have no ‘track record’ to offer. </p>\n\n\n\n<p>He feels he is a living example of how perseverance can lead to success. He offers these words to anyone thinking of making a move into development using the WordPress platform: “I attribute my success (financial and mental well-being) to the open-source nature of WordPress and its amazing community. It would not be possible to learn and use the plethora of free tools WordPress provides if it weren’t an open-source platform. It is for that reason I feel obligated to contribute back to this platform to the best of my abilities.” To those who are finding getting going difficult, as he did, he adds: “Get yourself a clear learning path and just dive in doing WordPress, and things will get better for you over time as they were for me, I promise. Good Luck!”</p>\n\n\n\n<h2 class=\"wp-block-heading\">Share the stories</h2>\n\n\n\n<p>Help share these stories of open source contributors and continue to grow the community.&nbsp;Meet more WordPressers in the <a href=\"https://wordpress.org/news/category/newsletter/interviews/\">People of WordPress series</a>.</p>\n\n\n\n<p>To help you discover more about how to use the WordPress software, there is a free resource from the community, <a href=\"https://learn.wordpress.org/\">Learn.WordPress.org</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributors</h2>\n\n\n\n<p>Thanks to Ihtisham Zahoor (<a href=\"https://profiles.wordpress.org/shaampk1/\">@shaampk1</a>) for sharing about his adventures in WordPress.</p>\n\n\n\n<p>Thank you to Abha Thakor (<a href=\"https://profiles.wordpress.org/webcommsat/\">@webcommsat</a>), Nalini Thakor (<a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">@nalininonstopnewsuk</a>), and Meher Bala (<a href=\"https://profiles.wordpress.org/meher/\">@meher</a>) for interviews, the feature and collaborating on images. To Chloe Bringmann (<a href=\"https://profiles.wordpress.org/cbringmann/\">@cbringmann</a>), Mark Smallman (<a href=\"https://profiles.wordpress.org/marks99/\">@marks99</a>), and Mary Baum (<a href=\"https://profiles.wordpress.org/marybaum/\">@marybaum</a>) for reviews. Thanks to the late Surendra Thakor (<a href=\"https://profiles.wordpress.org/sthakor/\">@sthakor</a>), Maja Loncar (<a href=\"https://profiles.wordpress.org/majaloncar/\">@majaloncar</a>), Maedah Bahtool (<a href=\"https://profiles.wordpress.org/maedahbatool/\">@maedahbatool</a>) and other members of the Marketing and Polyglots Team for their contributions.</p>\n\n\n<p>The People of WordPress series thanks Josepha Haden (<a href=\"https://profiles.wordpress.org/chanthaboune/\">@chanthaboune</a>) and Topher DeRosia (<a href=\"https://profiles.wordpress.org/topher1kenobe/\">@topher1kenobe</a>) for their support.</p>\n\n\n<div class=\"wp-block-media-text is-stacked-on-mobile is-vertically-aligned-center\"><img width=\"180\" height=\"135\" src=\"https://i0.wp.com/wordpress.org/news/files/2020/03/heropress_logo_180.png?resize=180%2C135&ssl=1\" alt=\"HeroPress logo\" class=\"wp-image-8409 size-full\" /><div class=\"wp-block-media-text__content\">\n<p class=\"has-small-font-size\"><em>This People of WordPress feature is inspired by an essay originally published on </em><a href=\"https://heropress.com/\"><em>HeroPress.com</em></a><em>, a community initiative created by Topher DeRosia. It highlights people in the WordPress community who have overcome barriers and whose stories might otherwise go unheard. </em>#HeroPress </p>\n</div></div>\n\n\n<p></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2023 20:22:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Abha Thakor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: WordPress Performance Analysis Finds Translations May Significantly Slow Down Sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147322\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://wptavern.com/wordpress-performance-analysis-finds-translations-may-significantly-slow-down-sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3110:\"<p>After a recent in-depth performance analysis earlier this year showed that translations can have an impact on server response times, WordPress contributors are <a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">proposing</a> half a dozen technical solutions for consideration to improve performance for the ~56% of WordPress sites that use translations.</p>\n\n\n\n<p>&#8220;Initial benchmarks showed that the median loading time for a localized site can be <strong>up to 50% slower</strong> than for non-localized sites, depending on which themes and plugins are being used,&#8221; Google-sponsored WordPress core committer Pascal Birchler said.</p>\n\n\n\n<p>Based on <a href=\"https://github.com/WordPress/performance/issues/171\">recent discussions</a> on GitHub, the Performance team has whittled it down to an updated list of six possible top contenders for speeding up sites with translations, including the advantages and disadvantages of each:</p>\n\n\n\n<ul>\n<li>Solution A: Use different file format</li>\n\n\n\n<li>Solution B: Native gettext extension</li>\n\n\n\n<li>Solution C: Cache translations</li>\n\n\n\n<li>Solution D: Lazily evaluated translation calls</li>\n\n\n\n<li>Solution E: Optimize/Rewrite existing MO parser</li>\n\n\n\n<li>Solution F: Splitting up translation files</li>\n</ul>\n\n\n\n<p>Localized WordPress sites currently download <code>.po</code> and <code>.mo</code> files that contain the translations, but the first suggested solution proposes storing translations in <code>.php</code> files and using the <code>.mo</code> file as a fallback, as Birchler proposes that PHP loading and executing another PHP file would be a faster approach. He has a proof of concept on GitHub at at <a href=\"https://github.com/swissspidy/wp-php-translation-files\">swissspidy/wp-php-translation-files</a> and <a href=\"https://github.com/swissspidy/ginger-mo/\">swissspidy/ginger-mo</a>.</p>\n\n\n\n<p>&#8220;When looking at all these factors, it appears that a <strong>revamped translations parser</strong> (<strong>solution E</strong>) could bring the most significant improvements to all localized WordPress sites,&#8221; Birchler said. &#8220;Especially when combined with a <strong>new PHP translation file format </strong>(solution A), which Ginger MO supports, the i18n overhead becomes negligible. Of course the same risks associated with introducing a new format apply.</p>\n\n\n\n<p>&#8220;On top of that, a revamped i18n library like Ginger MO could also be combined with other solutions such as caching or dynamic MO loading to potentially gain further improvements. However, those routes have yet to be explored.&#8221;</p>\n\n\n\n<p>The Performance team plans to test these ideas further on a wider scale through its <a href=\"https://wordpress.org/plugins/performance-lab/\">Performance Lab</a> feature project after gathering feedback from the broader community. August 6, 2023, is the deadline for leaving feedback on the <a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">proposal</a>, which includes benchmarks and more details from the analysis.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2023 19:29:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"BuddyPress: BP Classic 1.0.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=330594\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://buddypress.org/2023/07/bp-classic-1-0-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8040:\"<p>Dear end-users, site owners,</p>\n\n\n\n<p>The <a href=\"https://wordpress.org/plugins/bp-classic/\">BP Classic BuddyPress Add-on</a> has been built to provide <strong>backwards compatibility</strong> for sites that will not be ready yet for <strong>the important changes we will introduce in BuddyPress&#8217;s next major release, 12.0.0</strong>. As we will soon publish the first pre-release version (beta1) of BuddyPress 12.0.0, we thought it was a good idea to have this compatibility add-on available right away in the WordPress Plugin Directory.</p>\n\n\n\n<span id=\"more-330594\"></span>\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://buddypress.org/2023/01/buddypress-11-0-0-la-scala/\"><img width=\"879\" height=\"747\" src=\"https://buddypress.org/wp-content/uploads/1/2023/07/hello-buddypress-12-0.png\" alt=\"11.0.0 Hello Screen\" class=\"wp-image-330595\" /></a></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>On the <a href=\"https://buddypress.org/2023/01/buddypress-11-0-0-la-scala/\">11.0.0 “hello screen”</a> that is shown when you activate BuddyPress or that you can reach from the “Hello, BuddyPress!” link of the BuddyPress plugin row of your Installed Plugins Administration, we explained our plan for this move, today we’re making the orange highlighted text concrete.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Will my site be affected / do I need to install BP Classic <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f631.png\" alt=\"?\" class=\"wp-smiley\" /> ?</h2>\n\n\n\n<p>There’s no easy answer to these questions: it depends on how you use BuddyPress on your WordPress site. Let’s take some examples.</p>\n\n\n\n<h3 class=\"wp-block-heading\">I use the BP Default theme:</h3>\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://buddypress.org/wp-content/uploads/1/2023/07/bp-default-moves-to-bp-classic.png\"><img width=\"845\" height=\"531\" src=\"https://buddypress.org/wp-content/uploads/1/2023/07/bp-default-moves-to-bp-classic.png\" alt=\"BP Activities in BP Default theme\" class=\"wp-image-330596\" /></a></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p><strong>&nbsp;You absolutely need BP Classic &nbsp;</strong> because we <a rel=\"noreferrer noopener\" href=\"https://buddypress.trac.wordpress.org/changeset/13490\" target=\"_blank\">removed this theme from the BuddyPress plugin</a> as we deprecated it almost 10 years ago.</p>\n\n\n\n<p><strong>PS</strong>: If you’d copy the <code>bp-default</code> directory inside your <code>/wp-content/themes</code> directory, you’d still need BP Classic as BP Default uses functions we will deprecate in BuddyPress 12.0.0.</p>\n\n\n\n<h3 class=\"wp-block-heading\">I want to keep using BP Legacy Widgets:</h3>\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://buddypress.org/wp-content/uploads/1/2023/07/legacy-widgets-bp-classic.png\"><img width=\"1024\" height=\"474\" src=\"https://buddypress.org/wp-content/uploads/1/2023/07/legacy-widgets-bp-classic-1024x474.png\" alt=\"The Widgets WP Admin screen\" class=\"wp-image-330597\" /></a></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p> <strong>You absolutely need BP Classic</strong>  because after having migrated these to Block Widgets in 9.0.0, we decided to <a href=\"https://buddypress.trac.wordpress.org/ticket/8869\">move them into the BP Classic Add-on</a>. 3 major versions later, we believe we&#8217;ve offered enough time to migrate your Legacy Widgets to the new Block versions.</p>\n\n\n\n<h3 class=\"wp-block-heading\">I’m using a 3rd party BuddyPress theme and/or 3rd party BuddyPress plugins:</h3>\n\n\n\n<p>It’s too early to say/predict <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f52e.png\" alt=\"?\" class=\"wp-smiley\" />.</p>\n\n\n\n<p>We really hope that authors will update their code during the BuddyPress 12.0.0 beta period. We decided to make it last a least 3 months and <a rel=\"noreferrer noopener\" href=\"https://github.com/buddypress/buddypress/tree/master/docs/developer#buddypress-add-ons-handbook\" target=\"_blank\">started to document the changes</a> for our 2 most used APIs. You can help us by contacting their support team to draw their attention on the importance of beta testing BuddyPress 12.0.0 with their plugins/themes to check their compatibility and eventually adapt their code.</p>\n\n\n\n<p><strong>NB</strong>: in BP Classic &amp; BuddyPress 12.0.0 we’ve tried to consider all scenarios, including the possibility that no plugin/theme authors would update their code. If you don’t want to take any risk, you can already activate BP&nbsp;Classic in anticipation of <strong>the 12.0.0 upgrade which should happen on October 30</strong>.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">What is BP Classic doing, exactly?</h2>\n\n\n\n<p>Apart from becoming the new home for the BP Default theme and the BP Legacy widgets, BP Classic mainly neutralizes the important change we are introducing in version 12.0.0 about the way BuddyPress will build, parse &amp; analyze URLs from now on. In other words, it preserves the BP Legacy URL parser and disables the new BP&nbsp;Rewrites&nbsp;API.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://buddypress.org/wp-content/uploads/1/2023/07/bp-classic-friendly-reminder.png\"><img width=\"879\" height=\"607\" src=\"https://buddypress.org/wp-content/uploads/1/2023/07/bp-classic-friendly-reminder.png\" alt=\"BP Classic warning message\" class=\"wp-image-330598\" /></a></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>Above is a screenshot of what happens if you activate BP Classic in concert with a BuddyPress version <strong>&lt;</strong> 12.0.0, for example the current stable version 11.2.0. A warning notice is displayed every week to remind you this activated plugin is in <strong>sleep mode</strong> and will wake up once BuddyPress will be upgraded to 12.0.0. You can decide to deactivate it and reactivate a bit before October 30, or leave it active in anticipation of this date.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n<div class=\"wp-block-image\">\n<a href=\"https://buddypress.org/wp-content/uploads/1/2023/07/screenshot-1.png\"><img width=\"1024\" height=\"706\" src=\"https://buddypress.org/wp-content/uploads/1/2023/07/screenshot-1-1024x706.png\" alt=\"BP Classic setting tab\" class=\"wp-image-330599\" /></a></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>Once BuddyPress has been upgraded to 12.0.0, the most visible part of it in your WordPress Administration will be the BuddyPress settings pane. 12.0.0 will replace the “Pages” tab with a new “URLs” tab to allow full customization of every possible BuddyPress URL, BP Classic will carry on using WordPress pages for component directories and will keep this “Pages” tab in place.</p>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-7 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\"><a href=\"https://wordpress.org/plugins/bp-classic/\">BP Classic</a></blockquote>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\"></div>\n</div>\n\n\n\n<p>We’re aware such a big change may worry you, we have until October 30 to prepare it, let’s all work together to make it a successful first step of the <a href=\"https://buddypress.org/tag/feedback/\">BuddyPress reboot</a> we told you about in reply to your feedback.</p>\n\n\n\n<p>If you have questions about this change, we invite you to share them with us as replies to <a href=\"https://buddypress.org/support/topic/lets-prepare-the-buddypress-12-0-0-next-major-release/\">this forum topic</a>. We’ll take the time to give you answers.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<p>Many thanks to <a href=\"https://buddypress.org/members/dcavins/\">@dcavins</a> for his review <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f60d.png\" alt=\"?\" class=\"wp-smiley\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 31 Jul 2023 17:08:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Gutenberg Times: Gutenberg Changelog #87 – Patterns, Gutenberg 16.3 and WordPress 6.3.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=25089\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-87/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:57711:\"<p>Anne McCarthy and Birgit Pauli-Haack chat about patterns, Gutenberg 16.3 and WordPress 6.3. </p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-87shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-87/#transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<p><strong>Anne McCarthy</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://profiles.wordpress.org/annezazu/\">WordPress profile</a></li>\n\n\n\n<li><a href=\"https://www.linkedin.com/in/anneguionmccarthy/\">LInkedIn</a></li>\n\n\n\n<li>WPSlack channel <a href=\"https://wordpress.slack.com/archives/C015GUFFC00\">#FSE-outreach-experiments</a></li>\n</ul>\n\n\n\n<p><strong>WordPress 6.3</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">Hallway Hangout: Performance Improvements for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/25/the-benefits-of-prioritizing-and-measuring-performance-in-wordpress-6-2/\">The benefits of prioritizing and measuring performance in WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a>. </li>\n</ul>\n\n\n\n<p><strong>Gutenberg 16.3 </strong></p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">What’s new in Gutenberg 16.3? (26 July)</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/gutenberg-16-3-adds-new-tools-for-patterns\">Gutenberg 16.3 Adds New Tools for Patterns</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<ul>\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, hello and welcome to our 87th episode of the Gutenberg Changelog podcast. In today&#8217;s episode, we will talk about Gutenberg 16.3 and WordPress 6.3. I&#8217;m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and a full-time core contributor for the WordPress open source project. And today, I have the special pleasure of welcoming Anne McCarthy on the podcast with me. Anne is a product manager in Automattic and also a sponsored contributor on the Automattic&#8217;s Five for the Future program. I&#8217;m thrilled to have you on, Anne, how are you today?</p>\n\n\n\n<p><em>Anne McCarthy</em>: I&#8217;m thrilled to be here, so thank you for having me. I&#8217;m doing pretty well, I&#8217;m talking all about WordPress all day, which is a wonderful day in my book, so.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: In mine too. Yeah, so that&#8217;s why we&#8217;re good on this podcast together. So, you are just coming from the latest Hallway Hangout with the performance team. I know it&#8217;s only a half an hour ago or so, is there anything on the takeaways that you want to share right here with the listeners?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, so one of the things that stood out to me on the call, and beyond just the performance improvements that will be out of the box when you&#8217;re using WordPress, is a resolution to a 14-year-old track ticket, which blew my mind, where WordPress 6.3 will actually introduce support for registering scripts with async and defer attributes. And the reason I bring this up, it&#8217;s all part of the script API, is that people have to adopt it to see the impact. So, this is something that&#8217;s bundled under performance improvements and something that actually wasn&#8217;t on my radar in the same way, but I wanted to call it out for plugin authors because it&#8217;s one of those things that we need people to adopt in order to see the benefits.</p>\n\n\n\n<p>And there&#8217;s also great backwards compatibility. One of the things Felix called out was, let&#8217;s say you have a really large plugin and you have your own extensions within that plugin sphere, if those extensions haven&#8217;t adopted these changes, it will default to a more conservative approach. Meaning, there&#8217;s backwards compatibility, and if they&#8217;re&#8230; All of your extensions have it, your major plugin has it, and anything dependent on that major plugin that has that script in place and has the defer async attributes in place, will then upgrade automatically to use the new and improved stuff. So, I just wanted to call that out, I think it&#8217;s a great thing to have in place and we just need folks to adopt it. So, that was a big takeaway for me, beyond just the many improvements.</p>\n\n\n\n<p>And the last thing I&#8217;ll say is we did a data deep dive live on the call, looking at graphs and all this nerdy stuff, which was awesome, showing that basically after releases came out, seeing improvements in things like Core Web Vitals and actually in the data, which proves things from the lab. They talk about, &#8220;The lab shows this,&#8221; so meaning the confined environment versus in the field, so what you actually see in the real world, and what&#8217;s being shown in the lab ahead of WordPress releases is being proven in the field on live sites that are being indexed. So, that was really exciting to see. I don&#8217;t fully understand every aspect of the data but it was cool to go through with people who do.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you so much for this just-in-time note about the Hallway Hangout. I know your process is that the Hangouts were recorded and you will make a post on the Make Blog in the next few days, where you summarize it and then have all the resources linked up on the post. I also will dig into a little earlier this year, I don&#8217;t know if it was April or May, Felix Arntz, from the performance team, also posted a blog post about the changes and how the improvements were with block themes and these kinds of things. But I think there was one on the Make Blog but they were also on his personal blog.</p>\n\n\n\n<p>So, I&#8217;m going to link that up just to recall that, it was also in the weekend edition but not everybody reads that, or remembers that. I don&#8217;t always remember things, but I know it was in there. Yeah, so performance has been a big, big improvement on WordPress, I saw something like 17% with classic themes and about 20% with block themes, right out of the box, if you don&#8217;t slow your site down with very old plugins, of course. But that&#8217;s another story and outside the scope of this Changelog podcast episode. So, thank you so much. Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, thanks for giving us space to talk about that, it&#8217;s exciting.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Listener Questions</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So, I got an email from a listener, thank you so much, an accessibility advocate, and she wanted to know about the best practices to build sites with sidebars on the block themes, and those are read through assistive technology. So, screen readers, when they come to a website, they use the script to content link that comes out automatically with WordPress, but that skip the content also needs a target where to stop.</p>\n\n\n\n<p>So, content needs to be tagged with main to actually have that work. If people are creating sites or layouts with column blocks and each column doesn&#8217;t have any tag, but one is a sidebar that&#8217;s a reusable block, or it&#8217;s a template part, it will read through that every single time on every page, if it&#8217;s not tagged non-content, or a sidebar, or side, or something like that, or the main content is not tagged. Now, you couldn&#8217;t do that with a classic theme from a user interface, but you can do it actually with a group block that has these HTML elements that you can designate your content being either a main or a side. But the most important part is that you wrap whatever sidebar you have into a group block and then select those HTML elements. They&#8217;re also not very prominent, they&#8217;re in the advanced section.</p>\n\n\n\n<p>So, I just wanted to, those who are creating themes through the site editor or helping others to create templates, to be aware of these accessibility ramifications, or to make it known what people who are not visually impaired can see, that that&#8217;s repeated content, but the screen readers that help those that are impaired to go through the internet websites need a little help from the content creators or from the template creators. So, I&#8217;m sure there will be some more information about that, I just wanted you to be aware, and thank you for the listener to pick up on that and point that out. Accessibility is such an important part of web design and web building, that we need to make sure that if we use just the interfaces that we have those tools in place.</p>\n\n\n\n<p><em>Anne McCarthy</em>: I couldn&#8217;t agree more. Thanks for going through that too, it&#8217;s always good to learn about this stuff and to make sure that the default implementation ideally, can be done well. And this is where folks can create patterns into the parts to have this set up automatically in their themes with the right stuff in place. So I also encourage blocking authors to think about that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And I think it&#8217;s sometimes really hard on the user documentation to point out the higher ramification. If you just point out this little piece on the sidebar that is a new interface, what is the bigger objective for that?&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Announcements</strong></h3>\n\n\n\n<p>So, I&#8217;m really glad that the listener sent me that email and let me know about that, that&#8217;s a good question. So, Anne, you just published a post on the news site, speaking of changes for wordpress.org and it&#8217;s titled, Synced Patterns: the Evolution of Reusable Blocks. On the Podcast, we talked a little bit about the upcoming changes, so what is this post all about?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, so this builds on work that&#8217;s done in 6.3, to bring the creation of patterns to the experience, and that&#8217;s part of that you can sync or unsync patterns, which basically consolidates the concept of reusable block into the new concept of synced patterns. So this post is just trying to flag the change for people because reusable blocks is a known concept in the WordPress community, and retiring such a known concept deserves a lot of attention. And as part of this, there will be documentation updated, I am keeping an eye on that there, but this is just one of many efforts, including nudges in the interface to help communicate this change to folks. So, just see this as part of a larger effort to make sure that we&#8217;re bringing folks along as things evolve. I&#8217;m personally really excited because I think compared to the concept of reusable blocks, which sounds almost more technical than it should be, I think patterns is a much more approachable concept for folks to get behind and to use.</p>\n\n\n\n<p>So, I&#8217;m really excited and I hope it helps surface this more for folks, whenever they&#8217;re working with WordPress. But yeah, it&#8217;s pretty exciting. So, unseen patterns are essentially what you know and love as patterns today, you can put them in your post or page or template and customize it as you&#8217;d like, it&#8217;s not synced across the entire system. Sync patterns are just exactly how our usable blocks worked. They&#8217;re synced across things, you can have a way to convert to blocks if you want to edit it individually and turn it into an unsynced pattern. But yeah, there&#8217;ll be a whole interface to manage all your patterns, if you&#8217;re using a block theme, if you&#8217;re using a classic theme, we basically just reuse what&#8217;s in place for the reusable block screen. So, honestly, it&#8217;s a lot of just interface changes for, if you&#8217;re using a classic theme and for a block theme it unlocks a lot of functionality in terms of being able to manage all your patterns across themes and plugins and all sorts of stuff.</p>\n\n\n\n<p>So, yeah, it&#8217;s a huge, huge step forward and a big change, so hopefully this helps get you prepared, and if you have questions or things that you want answered, yeah, I&#8217;m @annezazu, Let me know what we&#8217;re not thinking about because I&#8217;m sure there&#8217;s a lot.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, and I had some conversations before in the last two months, once I saw that this change is going to come, and I was really excited that finally we have the feature to grade your own patterns in your own site. I think there were quite a few plugins out there that had very high installs and it&#8217;s now coming to core. I think the design team and the developers did a great job in just changing the name but leave everything else in place, for those who use reusable block or created reusable block, everything will be familiar, just the names are going to change. The concept itself is not necessarily retired, it&#8217;s just going to build into the pattern metaphor more. Because really, the only difference between a pattern and a reusable block was the synchronization over the instances. Yeah, definitely.</p>\n\n\n\n<p>Yeah, so we talked about it here at the podcast before and it brings us a leap forward, it also opens up the doors to additional changes. Because what I hear also, and you probably hear it even more, is what&#8217;s missing is that if you have a pattern and that&#8217;s used around the website, but all of a sudden you want to change styles, you&#8217;re not catching every pattern because you need to open up that, switch it out, you have to work around that. And so, partial synced patterns are now possible because we have an interface now, and it&#8217;s certainly further down the roadmap to find a way for the canvas to remember this was an unsynced pattern, but it can be partially synced. Because that is certainly missing in between where you don&#8217;t want to update content but you want to update the styling here, and the content stays the same that it was there.</p>\n\n\n\n<p>So, it&#8217;s all a little bit&#8230; But bringing it all together is reducing the cognitive load on things and have it all in one metaphor rather than have different ways on doing things. And you&#8217;ll find it just the same way you found it before. The icons are the same and the color is the same and the list views&#8230; I think you&#8217;ll find that the switch over to the new thing from reusable block to sync pattern is relatively&#8230; I wanted to say harmless, but smooth. Painless is, I think, the one that I was looking for.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yes.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What’s Released &#8211; WordPress 6.3</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So, that brings us to our section on what&#8217;s released. WordPress 6.3 is coming fast, Release Candidate 2 is out, has been out since the beginning of the week, and is ready for testing. The final release is scheduled for August 8th, and that&#8217;s less than two weeks to go. So, what&#8217;s the latest information about 6.3? Is everything on track? The dev notes have been out, your post is out about the sync patterns, you also published a post about the accessibility improvements and there have been a ton of dev notes also for the performance improvements. Is there anything else that has been new or what are the features that you are most excited about?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Oh man, that&#8217;s a great question.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Can you pick?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, can I pick? I will say, actually, I&#8217;m very excited&#8230; I did a YouTube video on this. There&#8217;s some hidden features and one of them, that&#8217;s not really hidden, but I think it can be taken for granted, it&#8217;s really the block theme previews. That has been something, that people have been unable to preview a block theme. So to even try to explore a required setting up a test site required, or just fully activating it without knowing how it might impact your site, and the ability to preview&#8230; And the preview uses the site editor, so you&#8217;re both getting a sense of what the theme will do, how it might impact your site, what bells and whistles it has, and it allows you to actually dive into the site editor itself and get a feel for it. And I&#8217;m just completely excited about that.</p>\n\n\n\n<p>I think that will be a huge thing with adoption that will be the unsung hero of this release in my mind. It&#8217;s been something that&#8217;s been a pain point for a long time and a lot of work went in to make it smooth, and yeah, it&#8217;s something I&#8217;m very excited to play around with and to see how it impacts things and helps folks step into that world. The only other thing&#8230; Thank you for calling out the accessibility improvements as well, so much work has gone into that with a lot of these features and more work remains to be done. But I&#8217;m in particular excited about some of the improvements to List View, which I know Alex Stein spent a lot of time doing, and so I want to call that out in particular as something that I&#8217;m quite excited about. I think the only other thing on my mind relates to, right now, there is some conversation around footnotes and how footnotes are being stored, and there&#8217;s some interesting dialogue there.</p>\n\n\n\n<p>I think we&#8217;ll end up seeing fixes get in place for it, but it&#8217;s just neat how these tiny blocks that are packed full of power are continuing to be iterated on at this point and getting bug fixes. So thank you to everyone who&#8217;s testing, because a lot of that has come from testing and feedback. And I know it might seem like, oh, we&#8217;re in the RC, things are smooth sailing, but you never know. We&#8217;ve had to remove stuff, we had to remove something in 6.2, so we still have time for the final release and we want it to be as polished and bug-free as possible.</p>\n\n\n\n<p>So it&#8217;s a very high impact time to be testing WordPress 6.3. This is actually my favorite time, because if you find something now, it&#8217;s also not great, but if you find something now, you prevent it for millions of people, so I think it&#8217;s a really exciting and important time. But there&#8217;s nothing, I&#8217;m trying to think of anything else in my mind that&#8217;s super&#8230; Beyond all this pattern stuff and all the other stuff that we&#8217;ve been talking about, but the blocking previews really does stand out to me personally, as something as I&#8217;m particularly excited about.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I really like how the style book is happening around the site editor, that you can really see all the&#8230; Even if you change something on the style variation and then propagate it, you see how it changes all the blocks, or if it doesn&#8217;t change the blocks. So, is the theme preview actually also using the style book? If you go into a preview and then you see the site editor, can you access the style book to see how the…</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes. Yeah, that&#8217;s what I thought.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yes, you can. Yeah, the entire site editor is using the preview, it&#8217;s amazing. The main thing that&#8217;s missing right now that some folks have brought up is the ability to schedule and save this draft, those different things. So that is work that needs to be done, that got brought up in the product demo, that needs to be done still, but we&#8217;ll get there. I think that&#8217;s part of the fun about iterating on this stuff, is like, yeah, yeah, totally, that is part of the roadmap, that&#8217;s something we&#8217;ll get to.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I still remember the excitement, when the customers got that feature to schedule updates.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Really?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, where people got ready for Christmas changes or for special sales on their website and then they could put it in the customizer and schedule it and then go on vacation or whatever.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Which is very cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, which is really cool. And it wasn&#8217;t so long ago, so that&#8217;s why people are still, come from that excitement and find it missing. But yeah, getting the previous in is really big. Yeah, absolutely.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So…</p>\n\n\n\n<p><em>Anne McCarthy</em>: Now, also…</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Mm-hmm, go ahead.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Revisions is the only other one that just came to mind, as we&#8217;re talking about revisions and saving and all that sort of stuff. The visual nature of the star revisions is so cool. Template and template part revisions didn&#8217;t make it for 6.3, but I&#8217;m hoping to see that in 6.4, and I think when that completion happens, I&#8217;m curious to see what kind of confusion might come up around if you have multiple different&#8230; I&#8217;ve already noticed that, some calls for testing, where people are like, oh, I made a change to the title of this, whatever, and then try to roll back with star revisions, and it&#8217;s like, oh no, you actually need do that with template revisions. So, having an intelligent system that works and makes sense, you know where to roll back, but there&#8217;s been so much good feedback about how visual and easy and beautiful the star revisions are. So, that&#8217;s another hidden feature that I like to talk about.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s great. The hidden features of 6.3, with Anne McCarthy. Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Could be here for two hours if I do that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, we have an open-ended thing here. Sooner or later I need to go to bed though. So, Anne and I, we are nine hours apart. So, Anne just got up and I&#8217;m at the end of the day, so.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Gutenberg 16.3</strong></h3>\n\n\n\n<p>So, Gutenberg 16.3, last time I looked it was about 180 PRs…</p>\n\n\n\n<p><em>Anne McCarthy</em>: Ooh.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Enhancements</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230;it&#8217;s one of the larger Gutenberg releases from 54 contributors. Two of them were first timers, and I think it was a lot of polishing and bug fixes, but there were also a few enhancements that made it into 6.3, and some of them don&#8217;t, probably, but let&#8217;s talk about them. So, the first one that I see was that you can have more intuitive archive titles for your query title block, there&#8217;s quite a few changes around that. Those don&#8217;t make it into 6.3 though, but it&#8217;s because it&#8217;s the first time it&#8217;s in there I think. So you can change the titles of your archive pages, remove the archive type, and what else is in there?&nbsp;</p>\n\n\n\n<p><em>Anne McCarthy</em>: I think this is hugely helpful because this is definitely something where we&#8217;ve gotten feedback from folks, where it was too generic before, it just showed archive title or whatever. It would not say specifically what you&#8217;re looking at, and when you&#8217;re creating a new template and you&#8217;re a first time user you might delete it, because you don&#8217;t know what it is. So knowing what it powers, knowing what it does, it&#8217;s a huge step up and I&#8217;m quite excited about this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah. And then the whole change the title of your archive pages is such an improvement towards the classic experience, because you always needed a developer to remove something or to change the title and now you can do it by yourself and you can create any kind of different templates with a query block, or the post template block. Yeah. So, yeah, next up is the add, renaming, duplication, and deletion option to patterns. That&#8217;s certainly coming into 6.3, patterns now have a dropdown menu, you can assess the three dots and then allow you to rename, duplicate and delete patterns easily. It wasn&#8217;t easy to do that before, especially the removal of patterns from your my patterns kind of thing. Yeah, it was a little bit convoluted because it wasn&#8217;t through the editor, now you can do it all through the editor. Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: I&#8217;ll also note, one of the reasons why this is also so important to get in and why it was backported in my opinion, is that when you are setting&#8230; You create a pattern and you set the sync status, so synced or unsynced, you cannot change that status after the fact. So, let&#8217;s say you make a mistake, you create an unsync and you&#8217;re like, wait, actually, I want this to be synced. Before you&#8217;d have to go in and copy/paste, this whole convoluted process, now, with the duplication you can duplicate, and when you duplicate you can basically decide the sync status. So that&#8217;s one of the things that came up, was we wanted a way to make it easy to give people control without having the option to change the sync status back and forth because that will create some muddiness.</p>\n\n\n\n<p>Let&#8217;s say you synced a pattern and then you randomly unsynced it two months later, imagine how that might create some chaos across your site. So, to limit that, we just basically said you cannot change the sync status after it&#8217;s created, but we&#8217;ll add in options to make it easy to manage those things. And things like, renaming and deleting are also just important basics to have, so yeah, I&#8217;m glad to see this in, and I think not being able to set the sync status might cause some confusion, so I&#8217;m curious how that lands with 6.3 and how we can integrate it for 6.4.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Yeah, I had some questions that were around that before, but the duplication feature, yeah, one click duplication, it&#8217;s pretty much, your work is not wasted, you just can replicate it and move forward with that. Yeah. The next piece is enable focus mode editing patterns. It was available for template parts before the focus modals, but now it&#8217;s also available for patterns, and it is then also backport it to 6.3&#8230; I&#8217;m just going to double check.</p>\n\n\n\n<p><em>Anne McCarthy</em>: I&#8217;m nearly positive, yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, me too, but…</p>\n\n\n\n<p><em>Anne McCarthy</em>: Potentially not. Let&#8217;s see if it works.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Potentially not, yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Maybe we should consider it. It might be because a new feature, but I&#8217;m like&#8230; We&#8217;re both on the corridor triage team here, it&#8217;s like, thoughts on backporting.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Maybe we should put it on the 6.3 editor task.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah. Yeah, let&#8217;s drop it into the triage session we&#8217;re doing today. Nice, I love it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right, and the next part is that&#8230; Well, it&#8217;s the copy, to make sure that reusable is removed from menus and all that, for the reusable block. The next part is the sticky header and pagination for pattern page. That is really cool.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah. I love seeing that. And that basically takes the patterns section of the block editor and ensures that when you&#8217;re scrolling down, unless you have a ton of patterns, that top heading that you can filter with will still appear, and it&#8217;s a quality of life improvement and definitely something that, if you have lots of patterns, which a lot of sites do with block themes, it&#8217;s pretty critical to be able to switch between and see what you&#8217;re actually seeing. So, I was pretty excited to see that in there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And I like the filter part, that you can just show me the synced patterns, just show me the unsynced patterns, so that&#8217;s really cool. The next one is, I wanted to mention it because that&#8217;s one of the changes, so the links that go to manage reusable blocks and manage patterns go to different places now. So, they go now to this site editor, where all the other interfaces are, to interact with patterns synced and unsynced patterns. There is that place, the WP admin looking place, still there, but now you can use all the site editor for the editing part. So, I think we will have that quite a bit in the next few releases, that we have a new managed thing, and then we can go back to the old thing, just because it might not be feature parity or so. I think that&#8217;s the first place where we can train ourselves with that.</p>\n\n\n\n<p>So, I like the site editor very much, but I&#8217;m still often going back to the WP admin and see a few things there. Yeah. Yeah, we talked about the sync status separation on the filter control already, but that&#8217;s coming also to 6.3, and it was backported to Beta 4. The components have been updated to support defined IDs for the text control component, that means that you can target them with CSS and also with JavaScript, and directly with the IDs, and identify…</p>\n\n\n\n<p><em>Anne McCarthy</em>: Very cool.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230;particular instances of the text control component, which is really important for a lot of extensibility usage there. There were some changes for the Interactivity API, and that&#8217;s only on the Gutenberg plugin. That, of course, every time we have a new thing in WordPress, we need to think about turning it off. What is necessary to turn things off? And so, the same with Interactivity API, it has been merged into 16.2, but not for 6.3, not for the WordPress, it&#8217;s coming in 6.4. But even with the Gutenberg plugin enabled, some people still want to turn off the Interactivity API because it interferes with their extensions.</p>\n\n\n\n<p>So, there&#8217;s now a filter to do this, and there&#8217;s also a runtime support to the WP style directive, so you can, on the fly, change the style for some of the Interactivity API entities. So, that&#8217;s these two things of Interactivity API. I&#8217;m sure there will be, very soon, a little bit more, a higher level, but also a more strategic announcement or strategic documentation about the Interactivity API. I know a few of our coworkers are working on that, to get this out, but with all the documentation it&#8217;s always a little bit behind the features there. So, go into the PRs to learn more about it.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, I&#8217;ll note too on that front. I got some really good feedback from someone saying, &#8220;Hey, this project&#8217;s been hard to keep on top of.&#8221; And so that was feedback that&#8217;s been brought back to the folks working on that. So, I think, last I can remember, from a conversation, my brain&#8217;s a bit mushy in the last couple of weeks, but I think they&#8217;re going to try and experiment with using discussion issues as a way to keep track of things, which is a bit of a departure from using overview or tracking issue labels in GitHub, but I think it&#8217;s going to be interesting and we can learn from that. But it is, as you said, anytime you add something, we need to think about removing it, and I know the Interactivity API is likely slated for 6.4, so it&#8217;s definitely something you can keep on top of and this was a great thing to call out. I could see folks skimming over this and not realizing how important it is. So, it&#8217;s a good one to keep in mind.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. In WordCamp Europe, I talked with quite a few people&#8230; Well, there were 2000 people there and I probably talked to 200 or so. So, I couldn&#8217;t talk to everybody. But there were quite a few people who were a little bit hesitant with a block editor because they&#8217;re PHP developers, and JavaScript is not really their thing, and they were really excited about the Interactivity API and the bigger emphasis on the dynamic blocks rather than the static JavaScript block. Because they can use the render that they did in shortcuts and then in widgets or something like that, all the render code, they can now use for blocks and then put the Interactivity API just in the directives in there to, to make it replicate some of the features that they had before. Which seems to be easier than the JavaScript, jumping all in on the JavaScript side. Yeah.</p>\n\n\n\n<p>So, well, from the block library section, there&#8217;s one component, the range control, that now has an additional attribute for the default size of 40 pixels. I think it does a few other sizes, but you can now use it if you use it in your own plugin settings pages or your own sidebar items, you can have a different size as a default size managed there. So that&#8217;s pretty cool.</p>\n\n\n\n<p><em>Anne McCarthy</em>: My understanding of that one was that it was updating the component to use the 40 pixel size and the design, but I could be wrong about that. I know Rich was working on that. So, I think it&#8217;s less having a default set and more having consistency across the settings. It&#8217;s a design quality of life. Because right now I think that settings page has been shifted around, but yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s what I get from the PR too, but it&#8217;s an additional attribute or a different component for the range control, because they need to keep it backwards compatible. So, what goes for the core range controls, the previous attributes and range control sizes are still in there, so it&#8217;s practically an enhancement there. But the core view is the new default, 40 pixel thing there.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s what I understood. But I might be wrong, I&#8217;ve been wrong before, so.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Same. Same. Been looking at too much stuff anyway.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>New API</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, sometimes you make it up as you go along, right? So, the next item is about the nested inner blocks. There&#8217;s a new API, or at least stabilizing existing API for default block, direct insert, and get direct insert block selectors, that were previously experimental, and it was hard to build on top of them. And one of the panelists that were on our past live Q&amp;A, Seth Rubenstein, stabilized those, as a first time contributor, stabilize those APIs. So he can also work on a separate PR, that he shared some code from their Pew Research work on quizzes with the core developers, with core. So, that&#8217;s really good that community developers also stabilize some of the APIs so they can continue on their quest of making the plug editor more versatile.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, I love seeing this, and Seth has been awesome to be driving stuff forward, with really practical use cases, and I think it&#8217;s a great example of using and extending Gutenberg and the core editor, and then also contributing back in a way that furthers it and is in line with the goals of this project. So, I think it&#8217;s really exciting and cool to see this moving along.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And they want to make some of the quiz code available as plugins, but you&#8217;re not supposed to put in plugins in the repo when you have experimental APIs in there. So yeah, that&#8217;s where this work also comes in, so it&#8217;s really important to make this all work in stable conditions.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Bug Fixes</strong></h3>\n\n\n\n<p>The next part is for patterns and alternative grid layout to improve keyboard accessibility. That&#8217;s one of the accessibility improvements that you were talking about before.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, as we&#8217;ve talked about just generally adding new features, accessibility does need to keep up and we need to have it accessible for all folks. And so, this just makes a change to using a standard UL, with keyboard tab indexes, to try and improve keyboard accessibility in particular. And I&#8217;m nearly positive&#8230; Scroll down. Yeah, I was going to say, AFercia who is, that&#8217;s the GitHub username, he is sponsored by Yoast, did a great job reviewing this, and to the point that Alex Stein was like, &#8220;This looks good to me.&#8221; And so, it&#8217;s another great example of showing the back and forth between the teams, but I also would love to get to the point where this is done by default and not caught later. So, it&#8217;s great to see the collaboration and to see this being done. And I know the accessibility team is always looking for more help, so it&#8217;s just great to see the back and forth and it is back forwarded to the release.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: To 6.3, yeah. Yeah. Yeah, I&#8217;m really glad to see Andrea coming back to the accessibility team. He did take a break from working on the accessibility team, but I think he found quite a few contributors now really digging into Gutenberg. So he felt a little lonely about three or four years ago, before the pandemic definitely, and so I&#8217;m glad he&#8217;s contributing back again on the team. And sponsored by Yoast, just to mention that once in a while. Great. The next part, yeah, so there is a fix to apply text color selection to link color if link color isn&#8217;t active. That has been a long-standing issue with the block editor, that people who changed the text color on the paragraph didn&#8217;t get the same color also for the link color and needed to change that separately.</p>\n\n\n\n<p>And some people, because it&#8217;s not a default control on the paragraph, just didn&#8217;t know about the link color and how to change it, and it really wanted to not make the changes and couldn&#8217;t dream up the new design. So, I&#8217;m really glad that that is now by default. Well, of course if you want to change the link color you can, but if you just change the text color in a paragraph, it automatically also changes the link color.</p>\n\n\n\n<p><em>Anne McCarthy</em>: And I want to call out, that that was part of an effort on a project board, which is a bit in the weeds, but the UX and Polish project board is a board within the Gutenberg project that is specifically for just super actionable issues, that are typically, quality of life, as the name suggest with Polish. And then user experience, so how can we make it just super intuitive? So, I just want to point that out, is the more you can write really targeted contained requests that are like, this is just a pain in the butt, I run through this a couple of times a week or something like that, it&#8217;s a great consideration for the UX and Polish board.</p>\n\n\n\n<p>I think there&#8217;s been maybe 80 items completed as a part of the UX and Polish board, which is kind of wild. And it&#8217;s something that I know a lot of folks keep an eye on, and it&#8217;s a great, if you&#8217;re a new developer and you want to get started, it&#8217;s also a great place to go and look at ways you can improve the project. So, I was excited to see that done as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Does it make sense to share the link to the project board in our show notes?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, let&#8217;s do it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230; so all the developers can grab things on what they&#8217;re interested in, and see the progress on it? Or even just test some of the PRs that are available and see if they are doing what they&#8217;re supposed to do.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Performance</strong></h3>\n\n\n\n<p>Yeah. So, the next thing is add client-side pagination to the panel list, client-side means in your browser, so you don&#8217;t go back to the server to get the next pages of patterns. I think that&#8217;s definitely a quality of life improvement. And this also has been ported back.</p>\n\n\n\n<p><em>Anne McCarthy</em>: This is the fun time with Gutenberg releases, where it&#8217;s like, what&#8217;s backported?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: What&#8217;s not? It was cherry-picked for everyone.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it&#8217;s synced with the core WordPress. Yeah, it doesn&#8217;t work. What&#8217;s backported? Yeah. What else? Do you want to talk about the work that&#8217;s done with the TinyMCE compatibility and the classic editor? Or the classic block in bigger projects?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah. So, one of the things that&#8217;s fun about Gutenberg is there&#8217;s actually experiments you can turn on and off. And so right now, from what I&#8217;m seeing, is there&#8217;s an experiment for TinyMCE removal, basically to help with compatibility with the classic editor plugin, and other plugins that disable the block editor. So, previously an experiment was introduced to help with TinyMCE removal, and so they&#8217;re just trying to polish this to make sure that there aren&#8217;t any regressions or just weird edge cases, and make sure that it&#8217;s using the same filter for classic editor plugin is using.</p>\n\n\n\n<p>So, it&#8217;s not for a lot of folks who are, Gutenberg change log, who are Gutenberg forward, but I think it is important to consider when we think about broader adoption and folks still using the classic editor, work and thought is still put in there. I know sometimes that feedback bubbles up, but there are efforts underway to ensure that people who do want to disable it, it still works. But yeah, I would encourage folks to also just use blocks. But yeah, I would call this a maintenance task, something that is really to just plug in interoperability and make sure things still work as expected. And so, it&#8217;s something that might be not as glamorous and shiny, but it&#8217;s still important work to do as part of the wider WordPress ecosystem.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And definitely, because there is this backwards compatibility promise for WordPress, and not only for the classic editor, but also for the classic theme. So, keeping that in mind, when you move forward in a different direction that people are still using the current stuff quite extensively and successfully, so they&#8217;re not impaired by any changes that are done. But sometimes these things are strategic and need to have a broader attention span on it and just not that one single feature. Excellent. So, I&#8217;m really glad that there is somebody on it. Yeah.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Documentation</strong></h3>\n\n\n\n<p>The next thing is mostly just to say that the documentation has been updated for the layout architecture after some of the APIs were stabilized. So, they are now showing up in the documentation and they&#8217;re not labeled as private or as experimental. So, that is definitely also a good thing, because a lot of people are a little bit hesitant to use experimental APIs or features.</p>\n\n\n\n<p>So, every time you can stabilize them and update the documentation so people know about it, is a good thing, it&#8217;s a good day. What else do we find? Oh yeah, there is an interactive template for talking about the Interactivity API.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Tools</strong></h3>\n\n\n\n<p>So, we have this scaffolding tool called Create Block, which speeds up your block development quite a bit when you start out with a new one or with putting additional blocks into a plugin. And now, there is also a template to use the Interactivity API on the next block that you are trying to build, that you&#8217;re working on, so you don&#8217;t have to include all the Interactivity stuff, for lack of a better technical term. And hook it up to all your other files, so there&#8217;s a template there. And it&#8217;s available now with a command line command, so that is certainly something for those people that want to dive into the Interactivity API.&nbsp;</p>\n\n\n\n<p><em>Anne McCarthy</em>: And when we make stuff like that easier, it&#8217;s so exciting, so great to call out.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Yeah, I think the great block scaffolding tool actually has not gotten enough exposure into the developers, because it was so late when it came out, people tried to build blocks and then gave up quite a bit. But now, every course, every tutorial that comes out of WordPress education or for the developer block uses a great block scaffolding. We hope to get more people building blocks.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So, I think we are through with the change log, that&#8217;s what we wanted to point out for 16.3.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What’s in Active Development or Discussed</strong></h3>\n\n\n\n<p>So, in active development, I think everybody, we talked about, just briefly about the phase three collaboration phase and all the posts that are there, we didn&#8217;t talk too much about it because WordPress 6.3 is such a big thing in front of us, the collaboration, we don&#8217;t know yet what&#8217;s going to be, but everyone&#8217;s excited, I think about the admin changes as well as the media library. And then, of course, the real time collaboration and the async collaboration, there&#8217;s a lot to come out. So, what are the next steps that we are going to see when people say, okay, some of us are still working on the Polish and UI changes for the site editor, and some of us are going to start and move over to the collaboration?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, I will say, I don&#8217;t anticipate to see any sort of real time collaboration added into 6.4. I think it&#8217;s such a short release cycle, so I just want to put that out there. I&#8217;m not seeing headwinds about that or momentum in that direction. But I do think that&#8217;ll give us lots of time to experiment, and I know Riad posted on Make Core about the realtime architecture, which is totally worth reading. And there&#8217;s also a GitHub issue, of course, it is a GitHub issue. But right now, the feedback that I&#8217;ve gotten and questions that I&#8217;ve gotten, since I run basically the phase two outreach program, the full site outreach program is, it&#8217;s, what outreach are we doing? What&#8217;s going to happen with that? Are you going to run one for that? There&#8217;s a lot of questions bubbling up, of what&#8217;s next.</p>\n\n\n\n<p>And right now, I will say, the focus remains on 6.3, but I would expect to see a lot of experimentation, a lot of stuff starting up. I have done some outreach to plugin authors, I&#8217;ve done related functionality like that. I&#8217;ve started talking to folks in a larger to medium to small publishing space and agencies and all that sort of stuff. But I encourage folks to stay tuned and as soon as something is ready, I planned, and I&#8217;m sure you planned, to shout it from the rooftops, try and get folks involved and figure out exactly how best to organize stuff. Because I think that is a big question is, these are such related but yet disparate initiatives, and I don&#8217;t think there&#8217;s necessarily an overarching, here is the next thing we&#8217;re doing. I think some folks, some individual contributors, are just kind of trying to explore and pave the path for now and see what we can learn, ahead of a more collective push, once 6.3 is out the door.</p>\n\n\n\n<p>But yeah, I expect things to be more experimental in the Gutenberg plugin, by the time 6.4 is released. And then 6.5 is when I am more anxious about what are we going to have in place and how can people help test. And so, right now, I encourage folks to comment on the post that Matias wrote, share your feedback, share your experiences. Are you a writer? Are you a journalist who&#8217;s had to work in collaborative situations? Talk about it, write your comments, what do you want to see? What do you like about other tools that have those kinds of features in place? What workflows does your team have?</p>\n\n\n\n<p>Yeah, I think there&#8217;s a plugin author who commented recently on a workflows post, after we had exchanged some emails, who works on a calendar. So, you have a calendar post coming up and you have workflows related to that. And he took the time to very kindly share his feedback. So, anything you can do there is super helpful, whether it&#8217;s your plugin or you&#8217;re a writer or you&#8217;re an organizational leader who has to manage this kind of stuff.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, that&#8217;s going to be real interesting. So, any feedback is really helpful in that. I just wanted to go back to what you said, okay, there&#8217;s not going to be a whole lot in 6.4 for phase three. I know there&#8217;s also quite a few things that are residual from phase two, contributors are aiming to get the funds API and the fund library into core, together with the typography management system. We talked about the Interactivity API, there&#8217;s certainly some front fund hydration kind of tools. We&#8217;re still waiting for the table of content block to be stabilized, and the time to read block, is something that is definitely on the list. And I&#8217;m really excited to see what&#8217;s coming as a default theme for 2024. And of course, all the publishing that goes into phase two interfaces and workflows for the site editor. Yeah, the default theme. Yeah.</p>\n\n\n\n<p><em>Anne McCarthy</em>: There&#8217;s so much already slated for 6.4.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And then your central…</p>\n\n\n\n<p><em>Anne McCarthy</em>: Provisions and templates and template parts, yeah, we could rattle off a bunch of stuff, let&#8217;s leave it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And we already know there&#8217;s stuff in there, so Beta 1 is September 26th, that&#8217;s just eight weeks away. And that&#8217;s kind of interesting to see how short of a cycle we are going to have, but we won&#8217;t hit US big holidays, like Thanksgiving, it will be out before Thanksgiving, it will be out before Christmas, and nobody goes into a Christmas year-end sale with a changed WordPress. So, I think it&#8217;s a good thing for the community, but it&#8217;s going to be hard to make it a splashy new feature kind of thing, when you only have eight weeks to develop. And it&#8217;s-</p>\n\n\n\n<p><em>Anne McCarthy</em>: It&#8217;s tight.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. But then Josepha started a wishlist post. We got quite a few comments there, and it&#8217;s still open until August 15th. She also made clear that it&#8217;s a wishlist, it&#8217;s not everything that&#8217;s going to be on there. It&#8217;s going to come into 6.4, but I think the jury is still out which part will be. If there is already a track ticket or a Gutenberg PR or issue, the chances might be going in, but a global, yeah, this is my wishlist kind of thing, it probably won&#8217;t get that attention. So, August 15th, that&#8217;s just before the community summit and WordCamp US. We will hopefully have, after WordCamp US, have a roadmap post, like you did for 6.3. Are you planning to doing something like that?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yes, I am. It is on my to-do list, I think for the week after, maybe August 14th or something like that, to start compiling stuff and figuring out what we can write up. Because yeah, that is an important thing to get out, especially with a shorter release cycle.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And it&#8217;s going to be interesting to see, it&#8217;s the underrepresented gender lead release. The last one was 5.6 and now we are 6.4, two years later, three years later. So, there are some awesome people on the release team, so I&#8217;m really looking forward to working with you and so many other, 40 on the direct release team or on the cohort, so it&#8217;s a great group of women/non-binary people working on the release.&nbsp;</p>\n\n\n\n<p>So, we are at the end of the show, Anne, it was wonderful to talk to you and you sharing all your knowledge&#8230; Not all your knowledge, we would be here another 10 hours.&nbsp;</p>\n\n\n\n<p><em>Anne McCarthy</em>: The highlights.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The highlights of the most immediate thoughts in the show. It was wonderful to have you, is there anything that you want our listeners to be aware of beyond what we talked about today, that we didn&#8217;t touch upon yet?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Oh, gosh. No, I don&#8217;t think so. I think the only thing that I&#8217;m noodling on is the next call for testing for the outreach program, and how we can get some feedback and get it going for 6.4, and just how 6.3 lands. So, stay tuned for that, if you&#8217;re not part of the FSE Outreach Program, it is still kicking, it&#8217;s still going over three years on.&nbsp;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: That&#8217;s wonderful.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. I really love that, how that turned out. And together, more people involved in testing themes, and no code and code people as well. So, is there a chance that you&#8217;re going to remove the experiment on that particular channel too?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Oh, gosh. I know, it&#8217;s so funny, I think it&#8217;s called FSE Outreach Experiment. Yeah, which is funny, because it&#8217;s like, how long can the experiment go for? We&#8217;re on very scientific terms right now, but yeah, no, we should remove it. I think I just referenced it everywhere, as FSE Outreach Experiment, so I&#8217;ve been nervous about getting rid of it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, okay. Yeah, I can see it.</p>\n\n\n\n<p><em>Anne McCarthy</em>: And FSE is also an old term&#8230; It&#8217;s just kind of a weird snapshot in time. But yeah, we&#8217;ll see.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right, well, it was wonderful to have you. If people want to get in touch with you, would be through the channel FSE Outreach Experiments?</p>\n\n\n\n<p><em>Anne McCarthy</em>: Yeah, that&#8217;s probably the easiest. I&#8217;m @annezazu on Make Slack, and then I have a site, <a href=\"https://nomad.blog/\">Nomad.blog</a>. I&#8217;m on LinkedIn, but otherwise, not really typically on any social media. So not on X, or whatever they&#8217;re calling it, the kids are calling it these days. I don&#8217;t know how you even refer to that anymore.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it&#8217;s now a Boomers network, right? All right, well, thank you so much for being here, and we are going on holiday, the next recording will be August 25th and we will have Ellen Bauer.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Oh, amazing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: &#8230;lead for design, or co-lead, on the design release team for 6.4. And we&#8217;re going to talk about their work on block themes, and of course the next two Gutenberg releases, Gutenberg 16.4 and 16.5. So, stay tuned for the next one. And there&#8217;s always, dear listeners, the show notes will be published on gutenbergtimes.com/podcast, and if you have questions as suggestions or news you want us to cover, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. That&#8217;s <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. And that&#8217;s it for me, I wish everybody a great summer, and I will be back end of August. Take care.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Amazing. Thank you for having me.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right, bye-bye.</p>\n\n\n\n<p><em>Anne McCarthy</em>: Bye.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jul 2023 20:28:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"Gutenberg Times: Patterns, Block Styles and Slotfills—Weekend Edition #263\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=25029\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://gutenbergtimes.com/patterns-block-styles-and-slotfills-weekend-edition-263/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14894:\"<p>Howdy, </p>\n\n\n\n<p>One more week, and I will start my Summer vacation. It&#8217;ll be a mixture between, pursuing neglected passing projects, giving family support, birthday celebrations and home improvement projects. My husband and I will join my in-laws  (MIL + SIL) on a river-cruise on the Danube and visit new places and revisit familiar places. </p>\n\n\n\n<p>The last touches on the WordPress 6.3 release are happening. If you haven&#8217;t yet, check out all the information that&#8217;s out there, and you find in the last two weekend editions. </p>\n\n\n\n<p>Yours, ?<br /><em>Birgit</em></p>\n\n\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-word-press-6-3\">WordPress 6.3</a></li><li><a href=\"https://gutenbergtimes.com/feed/#1-gutenberg-16-3\">Gutenberg 16.3 </a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-word-press-6-3\">WordPress 6.3</h3>\n\n\n\n<p>On the WordPress News site, <strong>Anne McCarthy</strong> published <a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\"><strong>Synced Patterns: The Evolution of Reusable Blocks</strong></a>. You&#8217;ll learn everything there is to know about how the term &#8220;Synced patterns&#8221; is replacing the term &#8220;Reusable blocks&#8221;, and how this brings a unified creation experience for new pattern to your WordPress site with the new version. </p>\n\n\n\n<p>Many users have been applying reusable blocks to CTA, bios and compliance copy on their sites. Those will stay intact. Nothing changes here. The same mechanism you used to create reusable blocks, is also used to create synced patterns. It&#8217;s now also expanded to create standard patterns. A feature many site owners and designers have been waiting for. McCarthy and I also talked about this during our podcast recording. </p>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator has-text-color has-accent-color has-alpha-channel-opacity has-accent-background-color has-background is-style-wide gt-separator\" />\n\n\n\n<p><strong>Matt Medeiros,</strong> publisher of WPMinute, asked in his latest episode: <br /><a href=\"https://thewpminute.com/will-wordpress-6-3-be-the-best-ever/\"><strong>Will WordPress 6.3 be the best ever?</strong></a> &#8220;There are a lot of exciting features coming to WordPress 6.3 which will set the tone for the next few years of our favorite CMS.&#8221; he wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-accent-color has-alpha-channel-opacity has-accent-background-color has-background is-style-wide gt-separator\" />\n\n\n\n<p><strong>Jonathan Bossenger </strong>provides a recording of his <a href=\"https://wordpress.tv/2023/07/28/testing-wordpress-6-3-developer-edition/\"><strong>Testing WordPress 6.3 – Developer Edition</strong></a> session. You&#8217;ll learn how to install the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\"><em>WordPress Beta Tester plugin</em></a>, convert a local installation to 6.3 RC  for testing. Then use this setup to test it against a theme that is in active development, and then revert it back to WordPress 6.2.2. With WordPress 6.3 due on August 8, 2023, now would be a great time to help test the release candidate, as well as confirm that your plugins and themes are ready for the 6.3 release.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-gutenberg-16-3\">Gutenberg 16.3 </h3>\n\n\n\n<p><strong><a href=\"https://twitter.com/michaelburridge\">Michael Burridge</a></strong> led the latest Gutenberg release. It was mainly a maintenance release and comprised of a myriad of bug fixes for features slated for WordPress 6.3. Burridge highlighted in his release post <strong><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">What’s new in Gutenberg 16.3? (26 July)</a>&nbsp;</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/#focus-mode-editing-for-patterns\">‘Focus mode’ editing for patterns</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/#sticky-header-bar-on-patterns-page\">Sticky header bar on Patterns page</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/#rename-duplicate-and-delete-patterns\">Rename, duplicate, and delete patterns</a></li>\n</ul>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator has-text-color has-accent-color has-alpha-channel-opacity has-accent-background-color has-background is-style-wide gt-separator\" />\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>?️ </strong> Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-87/\">Gutenberg Changelog #87 – Patterns, Gutenberg 16.3 and WordPress 6.3.</a> with Anne McCarthy as special guest, hosted by Birgit Pauli-Haack</p>\n</div></div>\n</div></div>\n\n\n\n<p><strong>Anne McCarthy</strong> and I talked about this release and, of course, also about WordPress 6.3 while recording the <strong>Gutenberg Changelog 87</strong>. It&#8217;s always a great joy to listen to Anne and take a deep dive into the Site editor with her. The episode is still at the editor, but will be available via your favorite podcast app over the weekend. My favorite Podcast app is <a href=\"https://pocketcasts.com/\">Pocket Casts</a> and I have been a paying subscriber for many years.</p>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p><strong>Sarah Gooding</strong> reported on the release as well in her article: <a href=\"https://wptavern.com/gutenberg-16-3-adds-new-tools-for-patterns\"><strong>Gutenberg 16.3 Adds New Tools for Patterns</strong></a>. &#8220;Most notably, custom user patterns now have a dropdown menu for renaming, duplicating and deleting them. Patterns and template parts that come with themes will only have the “duplicate” option available since they cannot be deleted or renamed.&#8221; she wrote. </p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Jamie Marsland </strong>released a new video with a <a href=\"https://www.youtube.com/watch?v=ckq0Wfu2xvs\"><strong>tons of WordPress News that you probably missed</strong></a> with a demo of the <a href=\"https://gutenbergtimes.com/introducing-the-breadcrumbs-wordpress-block-plugin/\">Justin Tadlock&#8217;s Breadcrumbs Block</a>, the time to read block, and vertical text feature, and finally short appearances from Mike McAlister and Kevin Geary, with strong opinions on block themes specifically and Gutenberg as a whole. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>When users are new to WordPress, taxonomy is one of the concepts, that is harder to explain. <strong>Sarah Snow</strong> published a tutorial: <a href=\"https://learn.wordpress.org/tutorial/categories-vs-tags-whats-the-difference/\"><strong>Categories vs. Tags: What’s the difference?</strong></a> on the Learn.WordPress site. She shows you how to use them and that they are good for SEO juice and enhances content discovery for your readers. And  never have posts &#8220;uncategorized&#8221; again. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p>Last week, <strong>Justin Tadlock</strong> published <a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">part 1</a> of his Beyond Block Styles series. In part 2 he walks you through how to build custom styles for the core Separator Block.  <a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-2-building-a-custom-style-for-the-separator-block/\"><strong>Beyond block styles, part 2: building a custom style for the Separator block</strong></a>. It&#8217;s a deep dive into the inner workings of creating block styles for core blocks. You would need to have a certain set-up in place to follow along, and Tadlock takes you by the hand on <a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">using the WordPress scripts package with themes</a>. I can hardly wait for the third part. I probably see first drafts next week. </p>\n\n\n\n<img />\n\n\n\n<p class=\"has-light-background-background-color has-background\">Oh, and while I have you: Are you a developer with a topic idea that you would like to share with the community? How about publishing it <strong>WordPress Developer Blog?</strong> Read the&nbsp;<a href=\"https://developer.wordpress.org/news/tips-and-guidelines-for-writers/\">tips and guidelines</a>&nbsp;and find out&nbsp;<a href=\"https://developer.wordpress.org/news/how-to-contribute/\">how you can contribute</a>. Our next monthly meeting will be on August 3rd, 2023 at 13:00 UTC in the WP Slack <a href=\"https://wordpress.slack.com/archives/C03RL47B3S8\">#core-dev-blog</a> channel. Or just DM me on Slack @bph and we&#8217;ll set up a talk. </p>\n\n\n\n<p>If you are a novice to working with NodeJS or npm, <strong>Jonathan Bossenger </strong>has a tutorial for you on Learn.WordPress: <a href=\"https://learn.wordpress.org/tutorial/installing-node-js-and-npm-for-local-wordpress-development/\"><strong>Installing Node.js and npm for local WordPress development</strong></a>. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>In his live coding session on twitch, <strong>Ryan Welcher</strong> covered &#8211;  it seems &#8211; his most favorite topic: <strong><a href=\"https://www.twitch.tv/videos/1883051136\">Using custom SlotFill to extend a codebase</a>,</strong> using is ever evolving Advanced Query Loop plugin and adding more settings to the plugin&#8217;s sidebar. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Michael Burridge</strong> and <strong>Justin Tadlock </strong>presented at this month&#8217;s <a href=\"https://wordpress.tv/2023/07/26/wordpress-developer-hours-styling-blocks-july-2023/\"><strong>Developer Hours about Styling Blocks.</strong></a> The recording is available on WordPress TV. The panel talked about CSS custom properties (also known as CSS variables). You learn how to leverage them in custom blocks to give users more control over the styling and presentation of their sites.</p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: <a href=\"https://creativecommons.org/share-your-work/public-domain/cc0/\">CCO</a>&nbsp;licensed&nbsp;<a href=\"https://wordpress.org/photos/photo/382642d6b2/\">photo</a>&nbsp;by&nbsp;<a href=\"https://wordpress.org/photos/author/lanche86/\">lanche86</a>&nbsp;from the&nbsp;<a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 Jul 2023 09:34:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"WPTavern: Ninja Forms Version 3.6.26 Patches Multiple High Severity Security Vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147292\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/ninja-forms-version-3-6-26-patches-multiple-high-severity-security-vulnerabilities\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1893:\"<p>If you use the <a href=\"https://wordpress.org/plugins/ninja-forms\">Ninja Forms</a> plugin and your sites aren&#8217;t set to get automatic plugin updates, add a round of updates to your weekend plans. Patchstack is <a href=\"https://patchstack.com/articles/multiple-high-severity-vulnerabilities-in-ninja-forms-plugin/\">reporting multiple high severity security vulnerabilities</a> in the plugin, including the following:</p>\n\n\n\n<ul>\n<li>a POST-based reflected XSS (7.6 CVSS 3.1 score)</li>\n\n\n\n<li>a broken access control on form submissions export feature that allows Subscriber and Contributor role users to export all of the Ninja Forms submissions on a WordPress site (7.6 CVSS 3.1 score)</li>\n</ul>\n\n\n\n<p>Patchstack researchers discovered the vulnerabilities on June 22, 2023, and Ninja Forms patched them on July 4, 2023. The security advisory was publicly released on July 27, 2023. </p>\n\n\n\n<p>The plugin&#8217;s changelog for version 3.6.26 transparently identifies the security fixes included in the release:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p><em>Security Enhancements:</em><br />* Prevent unauthorized download of submission<br />* Prevent scripts in dashboard field labels; responsibly reported by Sayandeep Dutta<br />* Prevent front-facing label scripts; responsibly reported by Jonathon Zamora &amp; WordPress.org<br />* Prevent excess extra data through automated form submission<br />* Prevent override access where not permitted</p>\n</blockquote>\n\n\n\n<p>Ninja Forms is used on more than 800,000 WordPress sites. The majority of the plugin&#8217;s users are on version 3.6.x (73.6%) but WordPress.org doesn&#8217;t offer a more detailed breakdown of minor versions, so it&#8217;s not clear how many are still vulnerable. Ninja Forms users are recommended to patch their sites immediately. At this time, the vulnerabilities are not known to have been exploited.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Jul 2023 22:11:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WPTavern: WordPress Launches Slack/Matrix Bridge\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147271\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wptavern.com/wordpress-launches-slack-matrix-bridge\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3144:\"<p>WordPress meta contributors have just logged an important milestone in their efforts to <a href=\"https://wptavern.com/wordpress-project-to-evaluate-replacing-slack-with-matrix-open-source-chat\">explore replacing Slack communication with Matrix</a>, an open source federated chat system. The team hosted a meeting on the Meta Slack channel and the corresponding #meta:community.wordpress.org Matrix room simultaneously, enabled by the project&#8217;s <a href=\"https://make.wordpress.org/meta/2023/07/20/matrix-chat-summary-july-20-2023/\">new Slack/Matrix bridge</a>.</p>\n\n\n\n<p>The bridge allows users to follow the chat and participate from either Matrix or Slack, with messages showing up in real-time. It&#8217;s a tool that will make the transition easier as the WordPress project moves towards replacing Slack. The team is still in the process of importing the history for channels but the bridges are already in place for all public Slack channels/Matrix rooms. </p>\n\n\n\n<p>DM&#8217;s do not work over the bridge, although they work between Matrix users. The bridge doesn&#8217;t have access to anything that is private, and the historic data import into Matrix will only apply to public Slack channels. DMs and private channel history will not be ported over.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1213\" height=\"996\" />Meta contributor meeting inside Chatrix instance with room switcher disabled \n\n\n\n<p>The Matrix team has created a Gutenberg block that embeds a Matrix client called <a href=\"https://wordpress.org/plugins/chatrix/\">Chatrix</a>, which can be added to any WordPress page/post or P2 blog, as shown in the screenshot above. This example can be accessed at <a href=\"https://make.wordpress.org/meta/chat/\">https://make.wordpress.org/meta/chat/</a>. WordPress.org users can sign in with SSO inside the block and authorize their accounts to connect:</p>\n\n\n\n<img width=\"465\" height=\"500\" />\n\n\n\n<p>Now that the Matrix server is live at <a rel=\"noreferrer noopener\" href=\"https://community.wordpress.org/\" target=\"_blank\">community.wordpress.org</a>, WordPress users who want to attend team meetings or join rooms via Matrix can now do so using their choice of Matrix clients that support SSO. Logging in uses the same credentials as the WordPress.org account.</p>\n\n\n\n<p>&#8220;Compared to Slack this means a vastly simplified onboarding process,&#8221; Automattic-sponsored contributor Alex Kirk said. &#8220;Instead of waiting for an e-mail arriving at a special e-mail address, you set the server in your Matrix client to <code>community.wordpress.org</code> and click &#8216;Login with WordPress.org&#8217; (the name of that button might vary by client).&#8221;</p>\n\n\n\n<p>As the channels&#8217; history gets migrated over, Kirk said WordPress users will be automatically invited to rooms on Matrix that they have already joined from the Slack side. The team is planning to make more wide-scale public announcements after the Slack/Matrix bridge has demonstrated that it is running stable.</p>\n\n\n\n<p><a target=\"_blank\" rel=\"noreferrer noopener\" href=\"https://app.slack.com/services/B05A8FX9LBD\"></a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Jul 2023 21:31:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Matt: Ottawa Can Bring It\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=92586\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://ma.tt/2023/07/ottawa-can-bring-it/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:470:\"<p>Ottawa reminds me a lot of Houston. A city that is a microcosm of Canada&#8217;s diversity and vibrance.</p>\n\n\n\n<p>When you visit Ottawa, I&#8217;d recommend checking out <a href=\"https://aiana.ca/\">Aiana Restaurant Collective</a> (powered by WordPress, natch!) and <a href=\"https://www.stolengoodscocktailbar.com/\">Stolen Goods Cocktail Bar</a> to see craftspeople operating at the top of their game. <a href=\"https://dineriviera.com/\">Riviera</a> was also nice.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 28 Jul 2023 02:52:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: ClassicPress Community Considers Re-forking WooCommerce for Classic Commerce v2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147238\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wptavern.com/classicpress-community-considers-re-forking-woocommerce-for-classic-commerce-v2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4802:\"<p><a href=\"https://www.classicpress.net/\">ClassicPress</a>, the fork that has been keeping WordPress 4.9 on life support for those who don&#8217;t want to use the block editor, will soon be moving into version 2.0 after the community <a href=\"https://wptavern.com/classicpress-community-votes-to-re-fork-wordpress\">voted to re-fork a newer version of WordPress</a> (6.x) to keep moving forward. <a href=\"https://www.classicpress.net/classicpress-v1-6-0-is-out/\">Version 1.6.0</a> was released a few weeks ago as the last minor release before version 2.0.</p>\n\n\n\n<p>ClassicPress contributors are <a href=\"https://forums.classicpress.net/t/classiccommerce-v2/4860\">discussing the future of Classic Commerce</a>, which is a <a href=\"https://classiccommerce.cc/\">fork of WooCommerce 3.5.3</a> created to provide a reliable e-commerce solution for ClassicPress users. The community is now bracing for the inevitable compatibility issues introduced by version 2.0 that will require a massive undertaking to resolve. </p>\n\n\n\n<p>In a forum thread seeking community input, @shimmy, an IT solutions business owner with an interest in supporting a long term e-commerce solution, proposed the following options for Classic Commerce&#8217;s future: </p>\n\n\n\n<ul>\n<li>Re-Fork Woo-Current</li>\n\n\n\n<li>Re-Fork Woo-Previous</li>\n\n\n\n<li>Fork a different eCommerce solution</li>\n\n\n\n<li>Migrate CCv1 to current</li>\n\n\n\n<li>Complete Rewrite</li>\n</ul>\n\n\n\n<p>&#8220;We can talk about re-forking, using something that works or asking ourselves: are we ready to really fork and support it on our own developing it in a way it works in ClassicPress or do we fork it and continue to patch it every time it doesn’t work because blocks or just keep it frozen?&#8221; Elisabetta Carrara said.</p>\n\n\n\n<p>After some discussion multiple participants in the conversation were in agreement that forking the latest version of WooCommerce to make it work with ClassicPress is not a viable option.</p>\n\n\n\n<p>ClassicPress director Viktor Nagornyy suggested exploring a refork similar to the method used for ClassicPress 2.0.</p>\n\n\n\n<p>&#8220;With CP v2.0, we didn’t take WP v6.2 and rip out blocks, FSE, and React,&#8221; he said. &#8220;<a href=\"https://forums.classicpress.net/u/mattyrob\">@MattyRob</a> merged <code>develop</code> branch with CP v1, and worked his way through all the files to resolve merge conflicts. That was a lot of work, and he did a great job. WooCommerce and Classic Commerce are plugins, so I assume they have fewer files than WP/CP core.</p>\n\n\n\n<p>&#8220;This type of &#8216;merge-fork&#8217; could be a viable option for CC to save time and effort.&#8221; </p>\n\n\n\n<p>@shimmy, who would be leading this effort, said he is leaning toward this approach.</p>\n\n\n\n<p>&#8220;I think this provides a more natural upgrade path and to some degree backwards compatibility,&#8221; he said. &#8220;At some point in the course of merge-fork WC plugins will no longer be compatible with CC; which is fine because I think that CC should have it’s own plugin &#8216;bazaar.&#8217; This ensures compatibility with CC; if you need a feature then it should be a filtered result with what you already have in place.&#8221;</p>\n\n\n\n<p>Nagornyy also encouraged a nascent plugin ecosystem to grow up around these forks to provide additional features. Although the WooCommerce plugin ecosystem has thousands of options for extending stores, they are not guaranteed to be compatible with forks built on older versions of WordPress and WooCommerce.</p>\n\n\n\n<p>&#8220;While the core CC is free, I encourage plugin developers to consider developing paid plugins for CC to ensure they get paid for their time and effort,&#8221;  Nagornyy said. &#8220;It only strengthens CP and CC knowing premium, supported plugins are available. For e-commerce, the two profitable (and critically important) categories of plugins are payment gateways and shipping integrations.&#8221;</p>\n\n\n\n<p>With the major <a href=\"https://wptavern.com/wordpress-plans-ambitious-admin-ui-revamp-with-design-system-galvanizing-broad-support-from-the-developer-community\">changes coming to the WordPress admin in Phase 3</a> of the Gutenberg project, maintaining these forks will continue to be an uphill slog, as fewer plugins from the wider ecosystem will remain compatible with ClassicPress. </p>\n\n\n\n<p>Maintaining payment gateways and shipping integrations for compatibility with these forks is also going to be challenging, as this discussion indicates that the community doesn&#8217;t have many experienced e-commerce developers who are eager to step up and donate their time to this project.  If Classic Commerce cannot deliver on the ambitious &#8216;merge-fork&#8217; option, users may need to look towards integrating external e-commerce solutions. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 22:16:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"Post Status: WordPress 6.3 RC2 • Synced Patterns • Internationalization • Gutenberg Phase 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=150017\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://poststatus.com/wordpress-6-3-rc2-synced-patterns-internationalization-gutenberg-phase-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:25140:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (July 25, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">We&#8217;re under two weeks away from WordPress 6.3 release. Have you started testing? <br /><br />Big changes are envisioned for the Media Library, Admin Dashboard, and more. You have an opportunity NOW to share ideas. What considerations do we need to account for? Read the Phase 3 post from Matías and share your feedback in the comments. <br /><br />No longer will you find Reusable Blocks. In WordPress 6.3, you&#8217;ll now find Synched Patterns. Read on to learn why the name has been changed. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fe_gitMerge kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\"> WP 6.3, Reusable Blocks, Phase 3, i18N</h2><p class=\"kt-blocks-info-box-text\"><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f680.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a><br /><br />3&#x20e3; <a href=\"https://make.wordpress.org/core/tag/phase-3/\">Gutenberg Phase 3</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f310.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">I18N Performance Analysis</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f501.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\">Synced Patterns: The Evolution of Reusable Blocks</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">WordPress 6.3 Live Product Demo – Highlights &amp; Recording</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-15\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\">WordPress 6.3</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 Release Candidate 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-2-release-candidate-phase-2/\">WordPress 6.3 Release Candidate Phase</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/30/6-3-release-parties-schedule-and-hosts/\">6.3 Release Parties Schedule and hosts</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">WordPress 6.3 Beta 2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/05/25/wordpress-6-3-design-kickoff/\">WordPress 6.3 design kickoff</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/25/bug-scrub-schedule-for-6-3/\">Bug Scrub Schedule for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/wordpress-6-3-planning-roundup/\">WordPress 6.3 Planning Roundup</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/05/18/roadmap-to-6-3/\">Roadmap to 6.3</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress 6.4</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/06/05/wordpress-6-4-development-cycle/\">WordPress 6.4 Development Cycle</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h3 class=\"wp-block-heading\">WordPress 6.3 Field Guide and Dev-Notes</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">WordPress 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/bundled-themes-dropping-internet-explorer-scripts-and-styles/\">Bundled themes dropping Internet Explorer scripts and styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/improvements-to-the-cache-api-in-wordpress-6-3/\">Improvements to the Cache API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/configuring-development-mode-in-6-3/\">Configuring development mode in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">I18N Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/improvements-to-the-metadata-api-in-wordpress-6-3/\">Improvements to the metadata API in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/wp_query-used-internally-in-get_pages/\">WP_Query used internally in get_pages()</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/registering-scripts-with-async-and-defer-attributes-in-wordpress-6-3/\">Registering scripts with `async` and `defer` attributes in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/improved-caching-for-database-queries-in-wp_user_query/\">Improved Caching for Database Queries in WP_User_Query</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-developer-changes-in-wordpress-6-3/\">Miscellaneous developer changes in WordPress 6.3</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-20\">\n<div class=\"wp-block-column is-layout-flow\">\n<div class=\"wp-block-columns is-layout-flex wp-container-18\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/recap-of-the-diverse-speaker-training-group-wpdiversity-amer-emea-on-july-12-2023/\">Recap of the Diverse Speaker Training group (#WPDiversity) AMER/EMEA on July 12, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/13/new-handbook-page-for-wordcamp-organizers-wordcamp-speaker-selection-for-content-and-diversity/\">New handbook page for WordCamp Organizers: WordCamp Speaker Selection (for content AND diversity)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/07/12/summary-of-the-q2-community-team-role-updates/\">Summary of the Q2 Community Team Role Updates</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/25/a-week-in-core-july-24-2023/\">A Week in Core – July 24, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">What’s new in Gutenberg 16.3? (26 July)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/24/i18n-performance-analysis/\">I18N Performance Analysis</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3 Ideations</h3>\n\n\n\n<ul>\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/03/real-time-collaboration/\" rel=\"noreferrer noopener\">Real-Time Collaboration</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/04/workflows/\" rel=\"noreferrer noopener\">Workflows</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/05/revisions/\" rel=\"noreferrer noopener\">Revisions</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/07/media-library/\" rel=\"noreferrer noopener\">Media Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/10/block-library/\" rel=\"noreferrer noopener\">Block Library</a></li>\n\n\n\n<li><a target=\"_blank\" href=\"https://make.wordpress.org/core/2023/07/12/admin-design/\" rel=\"noreferrer noopener\">Admin Design</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\">Beyond block styles, part 1: using the WordPress scripts package with themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/make-your-sites-typography-make-a-statement/\">Make your site’s typography make a statement</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/whats-new-for-developers-july-2023/\">What’s new for developers? (July 2023)</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/07/how-to-modify-theme-json-data-using-server-side-filters/\">How to modify theme.json data using server-side filters</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/26/core-editor-chat-summary-26th-july-2023/\">Core Editor chat summary: 26th July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/25/dev-chat-agenda-july-26-2023/\">Dev Chat agenda, July 26, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/07/24/online-monthly-docs-team-contributor-day-july-25-2023/\">Online monthly Docs Team Contributor Day July 25, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/07/18/call-for-volunteers-to-help-with-6-3-end-user-documentation/\">Call for volunteers to help with 6.3 end-user documentation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/24/documentation-team-update-july-24-2023/\">Documentation Team Update – July 24, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/hosting-team-meeting-agenda-2023-07-26/\">Hosting Team meeting agenda 2023-07-26</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/hosting/2023/07/26/wordpress-hosting-survey/\">WordPress Hosting Survey</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/07/20/matrix-chat-summary-july-20-2023/\">Matrix chat Summary – July 20, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/20/make-team-dashboards/\">Make Team Dashboards</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/15/triaging-open-issues-on-trac-for-make-teams/\">Triaging open issues on Trac for Make Teams</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/06/11/linking-to-supporting-orgs/\">Linking to Supporting Orgs</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/07/26/mobile-team-update-july-25th/\">Mobile Team Update – July 25th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/25/community-meeting-recap-2023-07-25/\">Community Meeting Recap (2023-07-25)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/07/24/last-week-openverse-2023-07-17-2023-07-24/\">A week in Openverse: 2023-07-17 – 2023-07-24</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/25/performance-chat-summary-25-july-2023/\">Performance Chat Summary: 25 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/07/24/tackling-team-challenges-together/\">Tackling team challenges together</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/06/29/plugin-review-team-update-the-next-phase-begins/\">Plugin Review Team Update: The next phase begins</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/24/plugin-review-team-24-jul-2023/\">Plugin Review Team: 24 Jul 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/26/agenda-weekly-polyglots-chat-july-26-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – July 26, 2023 (07:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/07/18/wordpress-6-3-ready-to-be-translated/\">WordPress 6.3 ready to be translated</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/07/13/proposal-for-establishing-a-make-diversity-equity-inclusion-and-belonging-deib-team-within-the-wordpress-community/\">Proposal for Establishing a Make Diversity, Equity, Inclusion, and Belonging (“DEIB”) Team within the WordPress Community</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/support/2023/07/wp-contributor-mentorship-program-support-team-onboarding-meeting/\">WP Contributor Mentorship Program: Support Team Onboarding Meeting</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/support/2023/07/agenda-for-july-27th-support-meeting-2/\">Agenda for July 27th Support Meeting</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/sustainability\">Sustainability</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/sustainability/2023/07/27/sustainability-chat-agenda-july-28-2023/\">Sustainability Chat Agenda, July 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">Help Test WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/24/test-team-update-24-july-2023/\">Test Team Update: 24 July 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\"><a href=\"https://make.wordpress.org/theme\">Theme</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/07/26/themes-team-meeting-notes-july-25-2023/\">Themes Team Meeting Notes – July 25, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/07/25/themes-team-update-july-25-2023/\">Themes team update July 25, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/07/26/training-team-meeting-recap-25th-july-2023/\">Training Team Meeting Recap – 25th July 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/07/25/call-for-volunteers-to-help-with-6-3-learn-wordpress-updates/\">Call for Volunteers to help with 6.3 Learn WordPress updates</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/improving-website-performance-with-caching/\">Improving website performance with caching</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/installing-node-js-and-npm-for-local-wordpress-development/\">Installing Node.js and npm for local WordPress development</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=apac-exploring-some-of-the-new-6-3-wordpress-features\">APAC: Exploring some of the new 6.3 WordPress features</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=exploring-some-of-the-new-6-3-wordpress-features\">Exploring some of the new 6.3 WordPress features</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=onboarding-to-test-team\">Onboarding to Test Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=testing-wordpress-6-3-developer-edition\">Testing WordPress 6.3 – Developer edition</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team-3\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team-2\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=mentorship-program-introduction-to-the-wordpress-open-source-project\">Mentorship Program: Introduction to the WordPress Open Source Project</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-4\">What is the Domain Name System?</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=what-is-the-domain-name-system-3\">What is the Domain Name System?</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/developing-with-the-wordpress-rest-api/\">Introduction to developing with the WordPress REST API</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\"><a href=\"https://make.wordpress.org/tv\">WordPress TV</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/tv/2023/06/15/enhancing-slide-management-for-video-publications/\">Enhancing Slide Management for Video Publications</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordCamp Central</h2>\n\n\n\n<ul>\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-malaysia-2023-is-looking-for-speakers-and-sponsors/\">WordCamp Malaysia 2023 is Looking for Speakers and Sponsors</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/07/wordcamp-masaka-2023-celebrating-inclusion-diversity-and-innovation-with-wordpress-in-ugandas-pearl-of-africa/\">WordCamp Masaka 2023: Celebrating Inclusion, Diversity, and Innovation with WordPress in Uganda’s Pearl of Africa!</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://blog.jquery.com/2023/05/11/jquery-3-7-0-released-staying-in-order/\">jQuery 3.7.0</a></li>\n\n\n\n<li><a href=\"https://nodejs.org/en/blog/release/v20.2.0\">Node v20.2.0 released</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-1\">PHP 8.3.0 Alpha 3 available for testing</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-05-11-1\"></a><a href=\"https://www.php.net/archive/2023.php#2023-07-06-2\">PHP 8.2.8 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-07-06-3\">PHP 8.1.21 Released!</a></li>\n\n\n\n<li><a href=\"https://github.com/PHPMailer/PHPMailer/releases/tag/v6.8.0\">PHPMailer 6.8.0</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/\">TC39</a></li>\n\n\n\n<li><a href=\"http://github.com/composer/composer/releases/tag/2.5.8\">Composer 2.5.8</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"?\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"?\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"?\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 22:03:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"WordPress.org blog: Synced Patterns: The Evolution of Reusable Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15541\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wordpress.org/news/2023/07/synced-patterns-the-evolution-of-reusable-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4355:\"<p>Synced patterns are replacing Reusable blocks, offering a unified creation experience for new pattern functionality coming to WordPress 6.3. Patterns, first introduced in WordPress 5.5, are a collection of blocks that make it simple to add complex layouts and designs to any WordPress site without starting from scratch. With WordPress 6.3, set to be released on August 8th, you will be able to arrange blocks in unlimited ways and save them as patterns for use throughout your site, directly within the editing experience. You can also specify whether to sync your patterns, so that one change applies to all parts of your site, or to keep them unsynced, so you can customize each instance.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<h2 class=\"wp-block-heading\">Create your own patterns</h2>\n\n\n\n<p>The ability to create your own patterns, on top of using the ones bundled into each WordPress release, opens up a world of possibilities. Need to repeat the same contact information across your site and keep it up to date? Create a synced pattern with all the details, and say goodbye to repeating yourself, with the ability to quickly insert the synced pattern wherever you need it. If you find yourself creating various banners for your site and want them to have the same layout with unique content, creating an unsynced pattern speeds up your workflow and ensures a level of consistency in approach. While themes and plugins have been able to offer patterns to users and <a href=\"https://developer.wordpress.org/block-editor/how-to-guides/curating-the-editor-experience/#utilizing-patterns\">curate the experience</a>, this update allows agencies and site builders to do the same for their clients, directly in the site building process.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Dig into the details</h2>\n\n\n\n<p>Any previously made Reusable blocks will continue to function as they do now, just under the new Synced pattern name. To help adjust to these changes, a few contextual notices will be placed throughout the interface. Specifically, the menu item in the creation flow will show as “Create pattern/reusable block” until the prompt describing the switch is dismissed in one of the various locations, including the naming and syncing modal:&nbsp;</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>For folks using block themes, all patterns will be listed alongside template parts in the Site Editor &gt; Patterns section, where you can enter a focused editing mode to make changes. For Classic themes, the prior reusable block management page will now house patterns in a list, similar to the Posts &gt; All Posts view.</p>\n\n\n\n<img width=\"1024\" height=\"590\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/07/Site-Editor-_-All-Patterns-View.png?resize=1024%2C590&ssl=1\" alt=\"Patterns section of the WordPress Site Editor with My Patterns selected\" class=\"wp-image-15569\" />\n\n\n\n<p>For a complete overview of patterns on your site, all patterns provided by themes and plugins will be shown in this section but without the option to edit directly.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Go further</h2>\n\n\n\n<p>With the ability to create your own patterns baked into the creation experience, remember that you can copy the patterns available in the <a href=\"https://wordpress.org/patterns/\">Pattern Directory</a> and <a href=\"https://wordpress.org/patterns/about/\">contribute back</a>, an excellent way to democratize design for every WordPress user and the web.</p>\n\n\n\n<p><em>For more exciting features coming to patterns in WordPress 6.3, </em><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\"><em>read on in the Advancing the Power of Patterns post</em></a><em>. Thank you to the contributors who collaborated on this post: </em><a href=\"https://profiles.wordpress.org/cbringmann/\"><em>Chloé Bringmann</em></a><em>, </em><a href=\"https://profiles.wordpress.org/jpantani/\"><em>Jonathan Pantani</em></a><em>, </em><a href=\"https://profiles.wordpress.org/chanthaboune/\"><em>Josepha</em></a><em>, </em><a href=\"https://profiles.wordpress.org/kristastevens/\"><em>Krista Stevens</em></a><em>, </em><a href=\"https://profiles.wordpress.org/eidolonnight/\"><em>Nicholas Garofalo</em></a><em>, <a href=\"https://profiles.wordpress.org/provenself/\">Peter Rubin</a></em>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 14:45:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"annezazu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Do The Woo Community: Building Your Agency Stack with Judd Dunagan and Carlos Caneja\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75733\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://dothewoo.io/building-your-agency-stack-with-judd-dunagan-and-carlos-caneja/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:445:\"<p>Judd from Bright Vessel and Carlos from Britecode share insights and experience in building their WooCommerce Agency stack.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/building-your-agency-stack-with-judd-dunagan-and-carlos-caneja/\">Building Your Agency Stack with Judd Dunagan and Carlos Caneja</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 08:44:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"WPTavern: Gutenberg 16.3 Adds New Tools for Patterns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147209\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wptavern.com/gutenberg-16-3-adds-new-tools-for-patterns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2249:\"<p><a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">Gutenberg 16.3</a> was released today as a maintenance release but includes several new tools that make pattern management smoother and easier for users. Most notably, custom user patterns now have a dropdown menu for renaming, duplicating and deleting them. Patterns and template parts that come with themes will only have the &#8220;duplicate&#8221; option available since they cannot be deleted or renamed. </p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\nvideo credit: <a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">Gutenberg 16.3 release post</a>\n\n\n\n<p>Gutenberg 16.3 adds a sticky header bar on the Patterns page. It also brings the &#8220;focus mode&#8221; to patterns, which is already available for template parts in the Site Editor but not available when editing patterns. Users may not notice but it provides more a consistent editing interface.</p>\n\n\n\n<p>Those who have been keenly following the evolution of the Patterns page will notice that the &#8220;Theme patterns&#8221; heading has been <a href=\"https://github.com/WordPress/gutenberg/pull/52570\">removed</a> and the pattern categories rearranged. Theme and plugin patterns now appear above template parts.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1270\" height=\"1158\" />image credit: <a href=\"https://github.com/WordPress/gutenberg/pull/52570\">Gutenberg PR #52570</a>\n\n\n\n<p>The icon for synced patterns isn&#8217;t self evident and some users may need more context. <a href=\"https://github.com/WordPress/gutenberg/pull/52458\">A new tooltip</a> identifies synced patterns as those for which edits will apply anywhere the pattern is used.</p>\n\n\n\n<p>Gutenberg 16.3 includes more than two dozen pattern interface-related fixes, among other editor bug fixes. If you are using and managing patterns frequently, having the Gutenberg plugin installed will enable a better experience with this interface until these updates make their way into core WordPress. Check out the <a href=\"https://make.wordpress.org/core/2023/07/26/whats-new-in-gutenberg-16-3-26-july/\">release post</a> for a full list of all the changes and fixes in 16.3.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Jul 2023 02:49:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: WordPress 6.3 RC2 Released, Watch the Live Product Demo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147173\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/wordpress-6-3-rc2-released-watch-the-live-product-demo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4088:\"<p><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\">WordPress 6.3 RC2</a> has been released and is ready for community testing. Since RC1 landed a week ago, 15 changes have come in from the <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Editor</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=07%2F18%2F2023..07%2F25%2F2023&milestone=6.3&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Trac</a>, including bug fixes for footnotes, internationalization fixes, a missing command for opening the distraction free in the Site Editor, and a few other issues. </p>\n\n\n\n<p>This release also brings in <a href=\"https://core.trac.wordpress.org/ticket/58067\">work completing the About page</a> and adds a &#8220;Get Involved&#8221; section, closing a 10-year old <a href=\"https://core.trac.wordpress.org/ticket/23348\">ticket</a> that suggested adding a &#8220;Contribute&#8221; tab to the About page.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1367\" height=\"2560\" />\n\n\n\n<p>The new Get Involved page features both code-based and no-code contribution opportunities with a link to WordPress&#8217; contributor teams.</p>\n\n\n\n<p>The video of the <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">WordPress 6.3 Live Product Demo</a> has been published so anyone who was not able to attend can get a preview of what is coming in the next release. Automattic-sponsored contributors <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> and <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> hosted the demo, showing users how to use the new command palette to zip around the editor and manage settings views. They also guide viewers through browsing and editing pages within the Site Editor, managing synced patterns (formerly called Reusable Blocks), and showcased various new blocks and design tools.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<p>Check out the <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">highlights post</a> for all the links to features referenced in the demo and the Q&amp;A portion of the broadcast.</p>\n\n\n\n<p>For those interested in performance improvements coming in 6.3, an upcoming <a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">hallway hangout</a> is happening tomorrow <strong><strong><a href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20230727T1500\"><abbr title=\"2023-07-27T15:00:00+00:00\">Thursday, July 27, 2023 at 11:00 AM EDT</abbr></a>. </strong></strong>Participants can check the <a href=\"https://wordpress.slack.com/archives/C02KGN5K076\">#core-performance</a> Slack channel for the Zoom link before the event. Team leads will cover highlights from the 170+ performance improvements included in 6.3 and will discuss future improvements for 6.4. </p>\n\n\n\n<p>WordPress&#8217; Training team is <a href=\"https://make.wordpress.org/training/2023/07/25/call-for-volunteers-to-help-with-6-3-learn-wordpress-updates/\">calling for volunteers</a> to help with updating and revising existing Learn WordPress resources ahead of the 6.3 release. The team has created a <a href=\"https://github.com/WordPress/Learn/labels/6.3\">board</a> on their GitHub repository which highlights high priority tasks. </p>\n\n\n\n<p>WordPress 6.3 RC3 is expected to be released on August 1, and the general release is scheduled for August 8, less than two weeks away. There is still time to find and report some bugs. One easy way is to install the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin on a local testing site or use a quick throwaway site from services like InstaWP or TasteWP. <a href=\"https://core.trac.wordpress.org/newticket\">Bugs can be reported on Trac</a> or via the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta section</a> of the support forums.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Jul 2023 19:19:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: #85 – Giulia Laco on the Importance of Typography for Your Websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=147116\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/podcast/85-giulia-laco-on-the-importance-of-typography-for-your-websites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:51871:\"Transcript<div>\n<p>[00:00:00] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case the importance of typography for your websites.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m keen to hear from you, and hopefully get you or your idea featured on the show. Head to WPTavern.com forward slash contact forward slash Jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Giulia Laco. Giulia is a web designer and developer who has been working on the web since the mid 1990s. Her primary interests are web typography and font design. In addition to project development, she&#8217;s a consultant and a trainer, mostly working with CSS, web fonts and web typography.</p>\n\n\n\n<p>This is the last of our podcasts from WordCamp Europe, 2023. I spoke to Giulia in Athens because she had just finished her presentation entitled &#8220;typographic readability in theme design and development&#8221;.</p>\n\n\n\n<p>In this session, she explored how designers can assist with the readability of websites through careful consideration of the fonts they choose and why they choose them.</p>\n\n\n\n<p>It turns out there&#8217;s quite a lot to consider. And if you&#8217;ve not given this topic much thought in the past, you&#8217;ll perhaps learn something new. I certainly did.</p>\n\n\n\n<p>We begin the podcast talking through how, at the start of the web, we were making do with a limited range of tools to help us make typographic choices. There were no web fonts available, but that started to change around 2010. Now we have access to hundreds of fonts and need to be mindful that some fonts can pose readability challenges for some users of your website.</p>\n\n\n\n<p>Giulia talks about the fact that the manner in which we read has changed since the dawn of the internet. Many people now mostly consume small passages of text, which need to be considered in a different way to longer writing.</p>\n\n\n\n<p>Concentrating upon the letters in the Latin alphabet, we talk about the ways in which readers typically break up words into smaller units, and the fact that the way letters are shaped can make them easier to parse. There&#8217;s some technical language here, ligatures X-height, apertures, and more. Which tell us about the shaping and spacing of letters. Giulia explains the current state of research into how these characteristics of fonts can affect readability.</p>\n\n\n\n<p>We talk about whether or not there are fonts which are more readable than others. Is there a collection of fonts, which you can use and be confident that you&#8217;re going to make it easy for all users of your websites?</p>\n\n\n\n<p>Giulia talks about how designs need to consider the spaces into which the text is put. Most people have a proclivity for the order in which they view a page. And knowing about this path across the page can help your readers access the text.</p>\n\n\n\n<p>The width of the text is also important. You want people to be able to read from side to side without having to move their head. How does this work across different device sizes and what can be said about text, which runs right to left, or top to bottom?</p>\n\n\n\n<p>We round off the conversation with Giulia telling us where we can find out more, as well as some of the thought leaders in this space.</p>\n\n\n\n<p>It&#8217;s a fascinating conversation about a subject that often gets overlooked. Web designers, this episode is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Giulia Laco.</p>\n\n\n\n<p>I am joined on the podcast by Giulia Laco. Hello Giulia.</p>\n\n\n\n<p>[00:04:43] <strong>Giulia Laco:</strong> Hello.</p>\n\n\n\n<p>[00:04:43] <strong>Nathan Wrigley:</strong> It&#8217;s very nice to have you on. Giulia is joining me at WordCamp EU in Athens. It&#8217;s the last conversation that I&#8217;m recording, so very nice to have you on. You are going to be talking to us today about something that I genuinely didn&#8217;t know about.</p>\n\n\n\n<p>This was a really interesting topic to research from my point of view. You&#8217;re going to be talking to us a little bit about typography. That&#8217;s based upon a workshop that you did yesterday. How did it go?</p>\n\n\n\n<p>[00:05:12] <strong>Giulia Laco:</strong> I&#8217;m happy about that. I&#8217;m happy to hear that you are interested in typography as well.</p>\n\n\n\n<p>[00:05:17] <strong>Nathan Wrigley:</strong> Was it well attended? Did you get your information across? Did people engage with the topic?</p>\n\n\n\n<p>[00:05:22] <strong>Giulia Laco:</strong> I think so. I divided people in two groups, developers and designers. So to let them think about typography with the mentality of the others. So that was the point I was trying to have.</p>\n\n\n\n<p>[00:05:35] <strong>Nathan Wrigley:</strong> Well, the reason I wanted to talk to you was because when I was looking through the list of presentations and workshops, yours was really different, a topic that I genuinely hadn&#8217;t thought about in the way that you&#8217;ve made me think about it.</p>\n\n\n\n<p>Because whenever I think about typography, I am really just thinking about whether I like a font. So if I go to a website, I just make a quick judgment. Do I like that font? Do I not like that font? But there&#8217;s a lot more to it than that, which we&#8217;re going to get into. But can you just tell us why you&#8217;re interested in this? Do you have a history with working with type? Why are you so fascinated by typography?</p>\n\n\n\n<p>[00:06:17] <strong>Giulia Laco:</strong> Okay, well, maybe it&#8217;s because I&#8217;ve started making websites at the very beginning of the internet era. It was around, mid nineties. And we didn&#8217;t have the possibility to use web fonts of any kind on the web. We did what we could with very few tools. Whereas later on in 2009 or 10, we had this great possibility of using web fonts, and I started to get engaged with, with the typography. And that was the time when I was starting typography for the first time actually.</p>\n\n\n\n<p>[00:06:52] <strong>Nathan Wrigley:</strong> Are you interested in typography away from the internet? Are you interested in the way that type is presented in books and on paper?</p>\n\n\n\n<p>[00:07:00] <strong>Giulia Laco:</strong> Yes, everywhere. On menus as well.</p>\n\n\n\n<p>[00:07:03] <strong>Nathan Wrigley:</strong> Yeah, because when you actually turn your attention to typography, which is what I did after we booked this interview. Text is everywhere, and it&#8217;s really, really different wherever you look. So we are sitting in a room. There&#8217;s almost no text, but there&#8217;s a little bit of text behind you. It has a particular font.</p>\n\n\n\n<p>[00:07:22] <strong>Giulia Laco:</strong> Montserrat.</p>\n\n\n\n<p>[00:07:23] <strong>Nathan Wrigley:</strong> Montserrat probably, yeah. I&#8217;m looking at my computer. It has a font on it. I&#8217;ve just been downstairs, looked at a menu. It had three or four fonts on it. Wherever you look, there is text, and usually the typography has been thought about.</p>\n\n\n\n<p>But you were talking about typography from the point of view of how can be done better. How can be a problem for some people, and that I didn&#8217;t really realize. I knew that people would perhaps struggle to read text because it was too small, or there was a background color, which clashed with the color of the text. But I didn&#8217;t realize that the font itself could be a problem. So tell us how it can be a problem. How can some people struggle to read one font but not another?</p>\n\n\n\n<p>[00:08:08] <strong>Giulia Laco:</strong> Well, it&#8217;s a big question, because, there&#8217;s a lot of research about that, recent research on readability. Because very few people read a lot nowadays in each country. So a lot of countries are worried about that.</p>\n\n\n\n<p>So there are movements to let people read better by making some tools. And big companies like Adobe, Google are on this concern. They&#8217;re concerned about that. So they&#8217;re trying to study that subject. The Readability Consortium, a consortium from between these big companies and universities in America.</p>\n\n\n\n<p>And it&#8217;s working interdisciplinary. So with psychologists, typographers, graphic designers. And started to focus on what makes text legible. And what they are, as far as I know, they&#8217;re saying is that it&#8217;s different for everybody. So you test it.</p>\n\n\n\n<p>And so that&#8217;s why you need to make tools that help people adjust their texts when they read for long form reading, of course. Not for just a menu or, very few words you are going to read. And they&#8217;re trying to do those tools. And maybe it&#8217;s difficult for a user to know what they need.</p>\n\n\n\n<p>[00:09:30] <strong>Nathan Wrigley:</strong> Right.</p>\n\n\n\n<p>[00:09:30] <strong>Giulia Laco:</strong> So, they are working also with AI. Trying to have some patterns and, have some themes, let&#8217;s say. So that can adapt to very different kind of people. But they&#8217;re trying to reach that patterns by research, not by guessing. So that&#8217;s very intereting.</p>\n\n\n\n<p>[00:09:50] <strong>Nathan Wrigley:</strong> Yeah, really interesting. I mean, again, when I was researching this, it suddenly occurred to me that, I have children, they&#8217;re grown up largely now. But I remember when they came home from school, at the beginning, their homework was in child-friendly fonts. Let&#8217;s put it that way. Often it was something along the lines of comic sans something like that. And it didn&#8217;t occur to me at all at the time, I just thought, oh, well it&#8217;s a child-friendly font. It&#8217;s kind of round and it&#8217;s got, you know, there&#8217;s no hard edges.</p>\n\n\n\n<p>I just thought it&#8217;s just a pleasant thing to look at. But now that I&#8217;m thinking about it, it was probably an easier font for the child to begin to learn to read with. Because all of the letters were clear. There was no confusion between one letter and the other. You know, you couldn&#8217;t mistake the L for the I, for example. And I did wonder, you were saying that there&#8217;s less people reading than ever. If the typography is a, quotes, difficult font, it may be more difficult to begin learning to read. I don&#8217;t know if that&#8217;s something that you were trying to say there.</p>\n\n\n\n<p>[00:10:59] <strong>Giulia Laco:</strong> Well actually, when a child start reading has a very tough task. And helping that process is important. I remember seeing books in upper case letters only, it was meant to be simpler. But they started only to recognize only one kind of letters. In the Latin alphabet, we have upper case and lower case, and they&#8217;re very different because of their history.</p>\n\n\n\n<p>Uppercase letters comes from the engraved Latin letters. Whereas the small, lowercase, comes from calligraphy. So they&#8217;re very different origins,. And it&#8217;s not the same to learn lowercase a and a lowercase a. Recognizing them as the same letter, the same sound.</p>\n\n\n\n<p>And with sound is also difficult, especially in English, you have so much problem with sounds and letters.</p>\n\n\n\n<p>[00:11:57] <strong>Nathan Wrigley:</strong> Yeah. I think we have 44 sounds, but only 26 letters.</p>\n\n\n\n<p>[00:12:02] <strong>Giulia Laco:</strong> And the combination. When you use a letter and a sound, other languages are much more simpler on that respect.</p>\n\n\n\n<p>[00:12:09] <strong>Nathan Wrigley:</strong> Yeah again, remarkable. I&#8217;d never really given any thought to how different uppercase and lowercase are. But they don&#8217;t bear, in some cases they&#8217;re quite similar.</p>\n\n\n\n<p>[00:12:17] <strong>Giulia Laco:</strong> Yes.</p>\n\n\n\n<p>[00:12:18] <strong>Nathan Wrigley:</strong> So an l and a capital L, broadly the same. But something like an a, the capital letter A and the lowercase letter. They&#8217;re just utterly different, aren&#8217;t they? They&#8217;re really, really remarkably different. Oh, that&#8217;s fascinating. I hadn&#8217;t given any thought. So what makes text legible to a lot of people, or not legible to a lot of people? Are there any kind of guidelines around that?</p>\n\n\n\n<p>[00:12:41] <strong>Giulia Laco:</strong> Okay, I will distinguish between legibility and readability. Because, you have this distinction in English and it&#8217;s great. We don&#8217;t have it in Italian. I guess the legibility comes from lighting as we have for legibilita in Italian. And it&#8217;s something that has to do with decoding. So that&#8217;s something that has to do with the typeface.</p>\n\n\n\n<p>Whereas readability is something you want to read, you like to read something, you want to read. And not you&#8217;re just trying to decode things. So that&#8217;s a big difference, when you start to understand why a text is readable or not. I would say that trying to take a legible font means to have a font with certain characteristics.</p>\n\n\n\n<p>For example, it&#8217;s let&#8217;s say proved that a font with a higher X-height is more legible. I&#8217;m talking about running text, the body text for long reading experience. So X-height is basically the medium height of the lower case letters, based on the letter x, that&#8217;s why X-height, you see.</p>\n\n\n\n<p>And so for example, I don&#8217;t Helvetica has a higher X-height than Times New Roman, for example, if you compare it. And having a higher X-height is a typeface, be more readable.</p>\n\n\n\n<p>And another very important thing is with apertures. Apertures, how can I say, the white space inside the part of the letters that are open. Take a lowercase e in the lower part of the letter. You have this room. If it&#8217;s more closed, it&#8217;s less legible because it can be taken for an o for example, you see. So Helvetica, for example, is very well used, but it&#8217;s not legible as a body copy. Helvetica is wonderful for display type for titles, but not so well for body text.</p>\n\n\n\n<p>[00:14:42] <strong>Nathan Wrigley:</strong> So you are saying, so this X-height? So is typically the height of the letter x. So if I put an x next to the letter h, for example, it&#8217;s the height of the rounded bit of the letter h? </p>\n\n\n\n<p>[00:15:55] <strong>Giulia Laco:</strong> Yes, exactly.</p>\n\n\n\n<p>[00:14:57] <strong>Nathan Wrigley:</strong> Or it would be the height of the letter a? Or the rounded bit of the letter p? The more tall that bit is, the more legible it is for most people to read. I had no idea.</p>\n\n\n\n<p>[00:15:09] <strong>Giulia Laco:</strong> Well, it&#8217;s just one thing because, not only that, because it&#8217;s also how you set type. For example, if you have a large X-height, typeface and you set it with a very small space between the lines, the line height, the leading, they say in typography. You don&#8217;t take advantage of that highness, you see.</p>\n\n\n\n<p>[00:15:32] <strong>Nathan Wrigley:</strong> Okay. So if letters are squashed. If one line of letters is compressed, so line height.</p>\n\n\n\n<p>[00:15:37] <strong>Giulia Laco:</strong> Mm-hmm.</p>\n\n\n\n<p>[00:15:37] <strong>Nathan Wrigley:</strong> Is compressed up against another line of letters beneath it, that makes it more difficult to read because there&#8217;s just no room for the letters to breathe, There&#8217;s no gap. They&#8217;re all just squished together. Okay?</p>\n\n\n\n<p>[00:15:48] <strong>Giulia Laco:</strong> But you have to pay attention not to put too much line height. Otherwise you lose the next line when you jump from one line to the other, it&#8217;s too far and you can&#8217;t find it.</p>\n\n\n\n<p>[00:15:59] <strong>Nathan Wrigley:</strong> So this is the eyes ability to go from the end of one line and track, and immediately find the beginning the next line.</p>\n\n\n\n<p>[00:16:46] <strong>Giulia Laco:</strong> Yes exactlly.</p>\n\n\n\n<p>[00:16:47] <strong>Nathan Wrigley:</strong> I confess I have experienced that problem before, and I hadn&#8217;t noticed, until just now, that that was because of that. I&#8217;ve definitely had books that I&#8217;ve been reading where I&#8217;ve struggled to begin the next line, and sometimes repeated the line that I was supposed to be on. Or I&#8217;ve skipped a line and missed a line out and only halfway through thought, actually that doesn&#8217;t make any sense. Let me go back. I had no idea. But also you are saying that the amount of, what did you call it, the space?</p>\n\n\n\n<p>[00:16:30] <strong>Giulia Laco:</strong> Oh, typographers call it leading because it&#8217;s comes from lead, lead, lead, I don&#8217;t know, of the metal types. With metal types they used to put some space between the lines with some lead. So the lead bars.</p>\n\n\n\n<p>[00:16:45] <strong>Nathan Wrigley:</strong> Oh, okay. So they spaced them out with a physical object.</p>\n\n\n\n<p>[00:16:30] <strong>Giulia Laco:</strong> Yes, exactly.</p>\n\n\n\n<p>[00:16:45] <strong>Nathan Wrigley:</strong> And it was a bar of lead, and the wider the bar of lead, the more space. This is fascinating. But you also mentioned in the letter e for example, the lowercase e, forgive me if I misunderstood. So the bottom half of the letter e, there&#8217;s a gap, a little gap, and the amount of gap, if the gap is bigger.</p>\n\n\n\n<p>[00:17:07] <strong>Giulia Laco:</strong> That&#8217;s the aperture, yes.</p>\n\n\n\n<p>[00:17:08] <strong>Nathan Wrigley:</strong> The bigger the gap is, the more you are likely to be able to read it, typically?</p>\n\n\n\n<p>[00:17:13] <strong>Giulia Laco:</strong> Yes, because you&#8217;re likely to distinguish it from an o.</p>\n\n\n\n<p>[00:17:16] <strong>Nathan Wrigley:</strong> Of course.</p>\n\n\n\n<p>[00:17:17] <strong>Giulia Laco:</strong> You decode it easiest.</p>\n\n\n\n<p>[00:17:19] <strong>Nathan Wrigley:</strong> You keep mentioning Helvetica. Is that a font which has lots of problems? Is that why you mention it, because it&#8217;s full of things you can identify?</p>\n\n\n\n<p>[00:17:26] <strong>Giulia Laco:</strong> It&#8217;s very well known. That&#8217;s why I&#8217;m mentioning. And very much used. But it&#8217;s better to use it as a display type.</p>\n\n\n\n<p>[00:17:34] <strong>Nathan Wrigley:</strong> The only thing that I&#8217;ve ever had a problem reading, was the thing that I&#8217;ve just described where I have skipped a line or gone back and reread the other line. But I&#8217;m imagining that you&#8217;ve done this talk because there are problems which people experience, which I fortunately, don&#8217;t appear to have a problem with. What trips people up? If you were somebody that, I don&#8217;t know how to say this correctly. If you are somebody who struggles to read, what are the trip wires, if you know what I mean?</p>\n\n\n\n<p>What are the things in a font could be wrong that make you unable to read it? So you mentioned that the line height, you mentioned the X-height. Is there more to it than that?</p>\n\n\n\n<p>[00:18:14] <strong>Giulia Laco:</strong> Well, there might be a lot. One thing that I can think of are ambiguous forms of letters. Let&#8217;s take lowercase letters, p and q or b and d. So for these four letters in a sans serif font, for example, are usually with the same shape, just flipped or rotated. That&#8217;s said to be a problem with people that experience dyslexia. But it&#8217;s actually opinionated because we don&#8217;t know exactly how it works. Actually for everybody can be a problem to distinguish between similar shapes.</p>\n\n\n\n<p>For example, as you said before, a child who is starting to read, or to write as well, may experience the same problem. No matter if it&#8217;s, if there&#8217;s a problem of dyslexia or not. So if you are going to avoid these kind of things, you can pick a font, a serif font that generally has different letters, different forms. The four letters I mentioned, typically with small serfis in different parts of the letters so they can be distinguished, for sure.</p>\n\n\n\n<p>[00:19:27] <strong>Nathan Wrigley:</strong> Can you, I know it&#8217;s probably obvious to most people, but will you just tell people what a serif font is and what it isn&#8217;t? You know, if you&#8217;ve got a non serif font or serif font, what&#8217;s the difference?</p>\n\n\n\n<p>[00:19:39] <strong>Giulia Laco:</strong> Let&#8217;s take the example of Helvetica and Times New Roman. So maybe it&#8217;s easier for people to visualize the difference. Helvetica has straight lines, nothing at the termination of the strokes. Whereas Times New Roman has some small shapes that derive from the calligraphic or the, in that case, for the upper case, the engraving, the instrument that we use to engrave. And so they had this little [feet?] let&#8217;s say so, that distinguish the kind of font.</p>\n\n\n\n<p>And the font has a different mood, very different mood. And a lot of other characteristics. There are, well, history of typography is based on that more or less.</p>\n\n\n\n<p>[00:20:24] <strong>Nathan Wrigley:</strong> It always feels to me as if a font, a serif font, which has these, I think you use the word where the letter terminates. I&#8217;ve never really</p>\n\n\n\n<p>[00:20:31] <strong>Giulia Laco:</strong> thought about that. They always look as if they&#8217;re more, I don&#8217;t know, maybe in a legal document or something like that. They have this feeling of something more powerful or more important or something. It&#8217;s quirky that, isn&#8217;t it?</p>\n\n\n\n<p>I&#8217;m looking at a Google Doc where I&#8217;ve written my show notes and, I don&#8217;t see any that. I can&#8217;t tell you that either of those fonts are a serif font or a non serif font. I find them both equally easy to read. It doesn&#8217;t trip me up at all. But typically, is there a problem for some people with a serif font or a non serif font? Is there one, to catch everybody would it be better to not deploy a serif font or is there just no difference in people&#8217;s ability to cope with either?</p>\n\n\n\n<p>Each font is maybe very different. Most people at the first level, when they start talking about topography, they started to see this difference. But that&#8217;s not the main point. Maybe the main point in readability is the rhythm of letters. The rhythm where the white space and the black space, meaning when you have black text on white. They alternate each other.</p>\n\n\n\n<p>Try to figure out this word, minimum. You&#8217;ll have a lot of rhythm. Minimum in, written in lower case letters. You see? So, the rhythm is very, very different. And maybe that&#8217;s important in typography, in reading. And is very important for people who struggle with reading, because you don&#8217;t interrupt the rhythm. The rhythm helps reading.</p>\n\n\n\n<p>[00:22:03] <strong>Nathan Wrigley:</strong> It just sort of bounces along, doesn&#8217;t it? If you look at the word minimum, it genuinely has a, it&#8217;s almost like a little wave pattern going up and down, isn&#8217;t it? That&#8217;s fascinating. So what did you call it? Your ability to read it. There was a word you just said. Rhythm, rhythm. So words can have rhythm, and the more rhythm there is, the easier it is to read. So if a font provides rhythm, that&#8217;s a good thing.</p>\n\n\n\n<p>[00:22:24] <strong>Giulia Laco:</strong> I think so. But it depends also on the purpose. Long reading. I think that&#8217;s important. Otherwise it&#8217;s different. It&#8217;s totally different. I mean concepts with display types because they have a different purpose, you know, text and function. The titles have different purpose. They have to catch the attention. Whereas the long, the body text has to be read, so needs a different kind of attention.</p>\n\n\n\n<p>[00:22:53] <strong>Nathan Wrigley:</strong> Right. And are there any guidelines which kind of fonts catch the attention more, and which kind of fonts work better with the body content? You know, where you&#8217;re reading long paragraphs and so on? Does it matter or is there one kind of font that you would recommend in each case?</p>\n\n\n\n<p>[00:23:08] <strong>Giulia Laco:</strong> Generally, when you buy a font, you&#8217;ll have a font that is meant for body text and some other for display type. So if you rely on what the designer, the type designer, has done, you are safe. Otherwise you have to. try. But also if you go on a repository like Google fonts for example, you have this distinction among display types and other kind of types. So it&#8217;s quite a common mistake at the beginning to take display type and use it as a body text. And that&#8217;s a typographic crime.</p>\n\n\n\n<p>[00:23:47] <strong>Nathan Wrigley:</strong> I like it. Typographic crime. That&#8217;s great. We&#8217;re all of us using our devices more and more. It&#8217;s funny that you said that reading is becoming less and less, because it feels like we have text in front of us all the time now. So we&#8217;re constantly staring at our mobile phones, and our computers. But when I was a child, if I wasn&#8217;t holding book, I probably wasn&#8217;t reading.</p>\n\n\n\n<p>I mean, maybe there was a poster somewhere or something, but I&#8217;m surprised that reading is, there&#8217;s less desire to read, because it feels like every day I&#8217;m reading more or less constantly, you know, I&#8217;m scanning Twitter or Facebook or whatever.</p>\n\n\n\n<p>[00:24:26] <strong>Giulia Laco:</strong> It&#8217;s a new kind of reading, Because we had long form reading for books. Then we have glanceable reading for, I don&#8217;t know, street signs. Or maybe a manual in a website. And then we have this, they call it interlude reading. You read when you&#8217;ve time, you&#8217;re doing, you don&#8217;t have a lot of attention, you scroll. And then you have also that the way we read on the web is very different from what we read, elsewhere.</p>\n\n\n\n<p>For example, we have this shape, F shaped reading. When we, in a website, eye tracking has shown it quite a lot. You start from the top left where the logo generally is. Then you go on the right, then you go on the left, but a bit bottom, and then a bit, you are just drawing an F more or less, when you read.</p>\n\n\n\n<p>[00:25:17] <strong>Nathan Wrigley:</strong> So that&#8217;s what the eye typically does when it lands on a webpage.</p>\n\n\n\n<p>[00:25:20] <strong>Giulia Laco:</strong> Yes.</p>\n\n\n\n<p>[00:25:20] <strong>Nathan Wrigley:</strong> What was that? Top left, top right.</p>\n\n\n\n<p>[00:25:23] <strong>Giulia Laco:</strong> Bottom.</p>\n\n\n\n<p>[00:25:23] <strong>Nathan Wrigley:</strong> Bottom.</p>\n\n\n\n<p>[00:25:24] <strong>Giulia Laco:</strong> A bit in the middle, right. And then bottom again.</p>\n\n\n\n<p>[00:25:27] <strong>Nathan Wrigley:</strong> So it makes an, if you were to draw on top of that screen, it coincidentally looks a bit like a capital F.</p>\n\n\n\n<p>[00:25:32] <strong>Giulia Laco:</strong> Yes, exactly.</p>\n\n\n\n<p>[00:25:33] <strong>Nathan Wrigley:</strong> That&#8217;s fascinating.</p>\n\n\n\n<p>[00:25:34] <strong>Giulia Laco:</strong> Capital F reading.</p>\n\n\n\n<p>[00:25:36] <strong>Nathan Wrigley:</strong> Capital F reading. Presumably that&#8217;s on a desktop. On this, I&#8217;m not doing that am I? I&#8217;m holding up my phone. If I&#8217;m looking at a webpage, presumably it&#8217;s a different experience. It&#8217;s just left to right, left to right, left to right.</p>\n\n\n\n<p>[00:25:49] <strong>Giulia Laco:</strong> Also because you are hiding some part of the text with your thumbs. Are you right-handed? Left-handed? It depends what you do. And it change a lot. For example, in the UX design, we generally change some patterns with smartphones because we put some menus at the bottom because the area near the thumb, for example.</p>\n\n\n\n<p>So, if it changes where you put your fingers, your changes also where you put your eyes. Focusing in which part of the screen.</p>\n\n\n\n<p>[00:26:20] <strong>Nathan Wrigley:</strong> Yeah, that&#8217;s interesting. My experience of the internet is that usually the menu on a mobile device comes at top right. There&#8217;s usually some icon.</p>\n\n\n\n<p>[00:26:28] <strong>Giulia Laco:</strong> But that&#8217;s for convention.</p>\n\n\n\n<p>[00:26:29] <strong>Nathan Wrigley:</strong> But what you&#8217;ve just described is much more sensible, having the menu the bottom because.</p>\n\n\n\n<p>[00:26:33] <strong>Giulia Laco:</strong> I hope it will change soon.</p>\n\n\n\n<p>[00:26:34] <strong>Nathan Wrigley:</strong> Because my thumb can just go right to it. It&#8217;s just there. Yeah, that&#8217;s fascinating. It does matter what device you&#8217;re on. But are you using the same? I know that you&#8217;ve said that you reposition things like the menu or what have you, but are you using the same font on a desktop as you would be on a mobile device? Is it broadly the same? You don&#8217;t need to worry about the view port of a mobile device in terms of the CSS for setting the font. It&#8217;s just the same desktop, mobile, tablet, same fonts.</p>\n\n\n\n<p>[00:27:03] <strong>Giulia Laco:</strong> From the readability point of view, I would say yes. And it&#8217;s for branding. I guess it&#8217;s better to have different environments recognizable. Whereas you have to pay attention to licensing. If you buy a font, for example, you put it on an app, you might need a different license. If you&#8217;re using open type, open source phones, you are not going to have a problem. But if you buy, if you rent, web fonts, yeah, you might have some problem or you have to check if you can put that web front on an app. You might need a different license.</p>\n\n\n\n<p>[00:27:39] <strong>Nathan Wrigley:</strong> Yeah, I hadn&#8217;t really thought about that. It&#8217;s always quite common in the circle of friends that I have, comic sans is a font, which most of my friends ridicule. They think it&#8217;s a childish font. Nobody would put it on a professional website. Are there some fonts like that, which you would just always avoid? Not because they look childish, but because they are largely unreadable.</p>\n\n\n\n<p>[00:28:00] <strong>Giulia Laco:</strong> There might be some, for example, well comic sans has a very big history of love and hate, basically of hate actually. But remember the case and presentation of the Higgs Boson?</p>\n\n\n\n<p>[00:28:16] <strong>Nathan Wrigley:</strong> Yes. Was that done in comic sans?</p>\n\n\n\n<p>[00:28:18] <strong>Giulia Laco:</strong> Yes. There was a Twitter storm. Okay, you couldn&#8217;t use that informal font on a formal presentation, and that raised the topic actually. You have to use the font that is proper to the situation. It&#8217;s like clothing. The clothes you wear, it&#8217;s like the font you use. It depends on the situation.</p>\n\n\n\n<p>But I can understand the feeling that people have when they choose comic sans. And maybe I can suggest something similar, but a bit more proper, or a bit more interesting in that context.</p>\n\n\n\n<p>There&#8217;s one font. I am on Google fonts repository. That&#8217;s called Amantic Small Caps, and it&#8217;s a small caps, so it&#8217;s a more, it&#8217;s not lowercase. But it&#8217;s, I think has a similar mood and I would dare it&#8217;s quite a new comic sans in the mood. I mean, it has the same mood, in my opinion. I say in my opinion, it&#8217;s also because it&#8217;s in my culture, it&#8217;s very culture dependent. Because it&#8217;s based on what you saw, what you associate to those fonts for example.</p>\n\n\n\n<p>[00:29:28] <strong>Nathan Wrigley:</strong> Yeah, it&#8217;s really interesting when I travel to the US. The US have a really different set of fonts which they use, especially on government documents, than we have in the UK. And wherever I look, so I don&#8217;t know, I buy some sun cream or something like that. The font choice is utterly different from how it would typically look in the UK. And it&#8217;s kind of curious, that it&#8217;s so obvious to me that that&#8217;s an American box. And yet it&#8217;s merely a font that tells me that. But I can see it all the time.</p>\n\n\n\n<p>But what you&#8217;re saying though is you&#8217;ve got to use your intuition. There&#8217;s no rule for this is a good font, that&#8217;s a bad font. It&#8217;s really where are you putting it and your own personal preference. There are no fonts which are out of the question because they&#8217;re just literally unreadable by a subset of the people, no, you look like you&#8217;re about to say something.</p>\n\n\n\n<p>[00:30:18] <strong>Giulia Laco:</strong> Well, there might be some fonts that are really illegible, but there are some really nice experiment by a very talented type designers, David Jonathan Ross. He tried to push the boundaries of readability, making good fonts, but making how long you can go to draw a very new kind of letter and still have it readable. So that&#8217;s interesting to see. But made by people who know what they do.</p>\n\n\n\n<p>Whereas if you start, if you look at the, I don&#8217;t know, fonts that you can have on a lot of websites, just experiments by people who start. But if you, look at experiments by very good designers, oh, you know what they do.</p>\n\n\n\n<p>[00:31:06] <strong>Nathan Wrigley:</strong> You make client websites still. Do you get into this conversation quite a lot with your clients? Is typography something that you bang the drum of?</p>\n\n\n\n<p>[00:31:14] <strong>Giulia Laco:</strong> I try to listen as for everything else, to the client and understand what they need. And then I&#8217;ll try to suggest what I think is proper. It&#8217;s like also for the colour of a website for example. I ask and I give an advice maybe.</p>\n\n\n\n<p>[00:31:30] <strong>Nathan Wrigley:</strong> Are there any kind of hard and faster rules for where you, really, it would be unwise to put typography. In our show notes, I was talking about things like is it a bad idea to put, I don&#8217;t know, fonts into images.</p>\n\n\n\n<p>So you&#8217;re overlaying fonts on images. In other words, is it better always to have fonts on a plain background rather than on, let&#8217;s say you&#8217;ve got a mountain scene or something and you want to write something, you put it onto the image. Is it better to keep the text away from the images? That was just one thought.</p>\n\n\n\n<p>[00:32:02] <strong>Giulia Laco:</strong> That&#8217;s definitely better. But you have to distinguish between titles and body copy. A title might be, how can I say? It would be okay anyway. It&#8217;s only a word. You might have some tricks, for example, reducing the contest of the underground image. As long as you stick with accessibility guidelines, you&#8217;re safe for that regard.</p>\n\n\n\n<p>There are very good starting point for readability. I mean, I generally say that it&#8217;s better to start from accessibility and there are a lot of accessibility guidelines that help with the text. And then you go on and if you have some tools, like a very powerful web font, you can do more. And then you go with type setting and start type setting.</p>\n\n\n\n<p>Well, for example, you have to stop the line length. That&#8217;s very, very important. You don&#8217;t have to let your user go through all the screen, a very huge screen to go to the other line, to the second line.</p>\n\n\n\n<p>[00:33:04] <strong>Nathan Wrigley:</strong> Is there any guidance about how wide the text line should be? So maybe that&#8217;s a, I don&#8217;t know, you said using a number pixels is not always the best idea. But is there a character limit, or a word limit typically where the eye can cope with scanning from left to right and then beginning again. Because I&#8217;m staring at a Google Doc at the moment and it&#8217;s kind of interesting that the Google Doc looks like a piece of paper.</p>\n\n\n\n<p>And they&#8217;ve obviously deliberately taken it in. The Google doc could consume the whole width of my monitor, but it doesn&#8217;t. They&#8217;ve confined it to what looks like a piece of paper, and I presume that&#8217;s a convention, just so that my eye doesn&#8217;t have to go far left, far right, far left, far right. I could keep my nose pointed at the document and just let my eye do the work, whereas if it went from left to right, I would be moving my neck all the time as well. So is there a guidance of how wide text should be?</p>\n\n\n\n<p>[00:33:56] <strong>Giulia Laco:</strong> Typographers, for a long time, had recommended a line length of between 45 and 65 characters per line. It depends for Latin alphabets. The Web Accessibility Guidelines says, I think at the level Triple A. They say that they need 80 characters maximum per line for Latin, I think 40 for languages with ideograms. So they say something about that.</p>\n\n\n\n<p>And it&#8217;s very interesting to see that there&#8217;s a correlation between this line length and the way we read. The way we read is basically with eye and brain because, it&#8217;s a really complex process. But when we read with the eye, we just focus on few letters at the time, maybe six, seven characters. Then we jump to another area of fixation. And so you can do some math. A very good typographer Bruno Maag made that math.</p>\n\n\n\n<p>And he discovered that calculating the number of characters you see in each fixation has a relationship with what typographers said for years, for decades, for centuries actually. So they arrived at the same conclusions. So let&#8217;s say 55, 65 characters per line is a good measure.</p>\n\n\n\n<p>[00:35:18] <strong>Nathan Wrigley:</strong> Yeah.</p>\n\n\n\n<p>[00:35:18] <strong>Giulia Laco:</strong> On the other hand, all these factors are correlated. And especially font size, line height, and line length. Some typographers says that it&#8217;s like a triangle of these three elements have to be on balance. So if you change one, you have to change the others. Adapt the others.</p>\n\n\n\n<p>[00:35:40] <strong>Nathan Wrigley:</strong> So we&#8217;ve just been talking about the left to rightness, the line length. Is there anything about the length of the paragraphs that you use as well? I mean, I&#8217;m just used to reading books and obviously they&#8217;re confined by the width. The line length is taken account of. But I&#8217;m conscious that everything&#8217;s broken up into paragraphs and those chunks of meaning have often got little gaps between them. I&#8217;m imagining in many cases, paragraphs could go on for pages, but it&#8217;s better to break it up and it helps the brain to associate that this is a body of meaning and here&#8217;s another body of meaning and so on.</p>\n\n\n\n<p>[00:36:10] <strong>Giulia Laco:</strong> Yes. I think absolutely. The basic of our work as web designers actually. So it&#8217;s different from what we do on paper, because on screens we have to catch the attention. And so we need to make things very easy for the reader. That&#8217;s the purpose. Maybe it&#8217;s not always the case that that&#8217;s the purpose, but on web design generally, that&#8217;s the purpose.</p>\n\n\n\n<p>So it&#8217;s better to split a paragraph in a few small chunks, let&#8217;s say so, and give different, styling and introduce hierarchy as well. So that helps a lot in reading.</p>\n\n\n\n<p>[00:36:48] <strong>Nathan Wrigley:</strong> So headings and paragraphs and other headings and so on. You mentioned in the show notes that when you did your workshop, were going to give some helpful CSS to break up the text. Can you just tell us what that was? What helpful CSS did you have?</p>\n\n\n\n<p>[00:37:02] <strong>Giulia Laco:</strong> Basically, I would say that&#8217;s very important not to use an absolute unit when you set the font size. Where font size is what is more relevant in readability? Because if it&#8217;s too small, you can&#8217;t read at all. If it&#8217;s too big, also so you can&#8217;t read it well. So font size is very important and after the responsive web design, we&#8217;ve had the responsive web typography. It didn&#8217;t come at the same time. Because with responsive web design, we started to make things different for different devices. But we didn&#8217;t touch the font size.</p>\n\n\n\n<p>[00:37:40] <strong>Nathan Wrigley:</strong> Right, it was just the same. Yeah.</p>\n\n\n\n<p>[00:37:42] <strong>Giulia Laco:</strong> But it was really important to change the font size. At the beginning I thought that it was important to make smaller font size on smartphones. Because you had a very smaller screen, but that was not the reason I realized later on.</p>\n\n\n\n<p>And the reason is the distance of reading. So when you read something that is near, you don&#8217;t need a big font size. You generally keep an iPhone at 20, 30 centimeters of distance from your eye. Whereas if you read to a computer you are 70 centimeter, 80, 1 meter, I don&#8217;t know. If you read to a screen in a room, for example, yeah, it&#8217;s very, very different.</p>\n\n\n\n<p>For example, yesterday I had this at the workshop. I had this CSS Codepen. I realized I had some minimum and maximum font size in my slider. It was perfect for desktop reading. As soon as I was in the room, I said, oh no, I have to change, and I changed it to a different values because of that.</p>\n\n\n\n<p>[00:38:48] <strong>Nathan Wrigley:</strong> So, the presentation looked good on your computer, but as soon as it went on the big screen.</p>\n\n\n\n<p>[00:38:52] <strong>Giulia Laco:</strong> Okay, the presentation was okay because I knew it in advance. I mean, it was a presentation, but it was in the playground, I realized, yes. And because I had all those values, I was guessing what was reasonable values. But I didn&#8217;t test it before on such a big room.</p>\n\n\n\n<p>[00:39:10] <strong>Nathan Wrigley:</strong> So I&#8217;m guessing that at some point soon we&#8217;ll be able to make a link to WordPress TV. It occurs to me that the whole time we&#8217;ve been talking about typography, but we&#8217;ve probably been concentrating on English. Although it&#8217;s a common language, it&#8217;s by no means what everybody reads.</p>\n\n\n\n<p>So we&#8217;re going from top to bottom, left to right. But other parts of the world, let&#8217;s say people that read Arabic or Hebrew or Korean or Japanese or Chinese, whatever it is. They&#8217;re going in completely different directions, left to right, bottom to top and so on.</p>\n\n\n\n<p>Do they have similar concerns with their characters? Or is it just uniquely the Latin set of characters which has these problems?</p>\n\n\n\n<p>[00:39:54] <strong>Giulia Laco:</strong> I&#8217;m sure they have. Also maybe different problems. I&#8217;ll distinguish between Arabic to the other languages you mentioned, like Japanese, Chinese, and Korean, for example. They have ideograms. With Arabic it&#8217;s quite a calligraphic origin of the way of writing. And they make a lot of use of ligatures. It means it changes the shape of letters according to their combination.</p>\n\n\n\n<p>We have ligatures in Latin as well. For example, if you think of f and i, small lowercase letters f and y. Sometimes you have one glyph that put the dot of the i inside the f. And that&#8217;s coded inside the file, the font file.</p>\n\n\n\n<p>So in Arabic they have a lot of ligatures. And lately I&#8217;ve discovered that they also use color for accent. And Google fonts has some new fonts with this characteristic. Color fonts. Do you know color fonts?</p>\n\n\n\n<p>[00:40:54] <strong>Nathan Wrigley:</strong> No.</p>\n\n\n\n<p>[00:40:54] <strong>Giulia Laco:</strong> They&#8217;re very, very new. They&#8217;re coming.</p>\n\n\n\n<p>[00:40:57] <strong>Nathan Wrigley:</strong> How do you deploy color to. What? You&#8217;re going to have to explain that.</p>\n\n\n\n<p>[00:41:00] <strong>Giulia Laco:</strong> Well, they have color coded inside the typeface. It&#8217;s a new format we can use. And, it&#8217;s linked to CSS. It&#8217;s not so much ready, but it&#8217;s coming. It&#8217;s a new technology after variable fonts.</p>\n\n\n\n<p>[00:41:17] <strong>Nathan Wrigley:</strong> So certain aspects, certain portions of the letter receive different colors?</p>\n\n\n\n<p>[00:41:22] <strong>Giulia Laco:</strong> Yes.</p>\n\n\n\n<p>[00:41:23] <strong>Nathan Wrigley:</strong> And it provides, I have to just ask why? Why would you want to have a different portion of the letter in a different color?</p>\n\n\n\n<p>[00:41:30] <strong>Giulia Laco:</strong> Apart from Arabic, why not?</p>\n\n\n\n<p>[00:41:31] <strong>Nathan Wrigley:</strong> Oh, so it is, it&#8217;s just style. It&#8217;s not from the point of view of readability or legibility?</p>\n\n\n\n<p>[00:41:37] <strong>Giulia Laco:</strong> No. New frontiers of typography.</p>\n\n\n\n<p>[00:41:39] <strong>Nathan Wrigley:</strong> Oh, that is interesting.</p>\n\n\n\n<p>[00:41:40] <strong>Giulia Laco:</strong> But that was one point, but for Arabic might be for readability purpose. That&#8217;s why I mentioned it.</p>\n\n\n\n<p>[00:41:46] <strong>Nathan Wrigley:</strong> Honestly, this is such a fascinating subject. Unfortunately, we&#8217;re running out of time. Where would we go if we&#8217;ve been inspired by the talk that you&#8217;ve given today to me? Have you got any tips or places, websites to go to? If people are curious, where would you send them?</p>\n\n\n\n<p>[00:42:03] <strong>Giulia Laco:</strong> Okay. There are plenty of places and topography has been receiving quite an attention lately on the web. I&#8217;m always talking about on the web. But you can start with books from the tradition of typography. There are, I don&#8217;t know, from the sacred book of yypography, Robert Bringhurst, The Elements of Typographic Style. That&#8217;s a really nice starting point. Well, it&#8217;s not only a starting point.</p>\n\n\n\n<p>Erik Spiekermann&#8217;s, Stop Stealing Sheep and Find Out How Type Works. It&#8217;s very funny name. It has a history. I won&#8217;t spoiler it.</p>\n\n\n\n<p>Or I really, really liked the book by Richard Rutter, that is more on the web. It&#8217;s called Web Typography. It&#8217;s a manual on that.</p>\n\n\n\n<p>Or otherwise you can follow Jason Parmental that has been making a lot of experiments. It depends which part are you interested in.</p>\n\n\n\n<p>[00:42:59] <strong>Nathan Wrigley:</strong> You&#8217;ve given three or four things there. There&#8217;s probably something to get teeth into. And what about you? Where would we find you if people have listened to this and quite fancy having a chat with you about all this. Where do you hang out online?</p>\n\n\n\n<p>[00:43:09] <strong>Giulia Laco:</strong> Quite everyone. Maybe on LinkedIn, maybe you can reach me there so it&#8217;s better.</p>\n\n\n\n<p>[00:43:14] <strong>Nathan Wrigley:</strong> I will find your LinkedIn profile and I will link to that in the show notes. So let&#8217;s wrap it up there. Giulia, thank you so much for chatting to me today. Honestly, a real eye-opener. I&#8217;ve enjoyed that a lot.</p>\n\n\n\n<p>[00:43:24] <strong>Giulia Laco:</strong> Thank you. Me too.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://www.linkedin.com/in/giulialaco/\">Giulia Laco</a>.</p>\n\n\n\n<p>Giulia is a web designer and developer who has been working on the web since the mid 1990s. Her primary interests are web typography &amp; font design. In addition to project development, she is a consultant and a trainer, mostly working with CSS, web fonts and web typography.</p>\n\n\n\n<p>This is the last of our podcasts from WordCamp Europe 2023. I spoke to Giulia in Athens because she had just finished her presentation entitled “Typographic readability in theme design &amp; development”.</p>\n\n\n\n<p>In this session she explored how designers can assist with the readability of websites through careful consideration of the fonts they choose, and why they choose them.</p>\n\n\n\n<p>It turns out there’s quite a lot to consider, and if you’ve not given this topic much thought in the past, you’ll perhaps learn something new.</p>\n\n\n\n<p>We begin the podcast talking through how, at the start of the web, we were making do with a limited range of tools to help us make typographic choices. There were no web fonts available, but that started to change around 2010. Now we have access to hundreds of fonts and need to be mindful that some fonts can pose readability challenges for some users of your website.</p>\n\n\n\n<p>Giulia talks about the fact that the manner in which we read has changed since the dawn of the internet. Many people now mostly consume small passages of text, which need to be considered in a different way to longer writing.</p>\n\n\n\n<p>Concentrating upon the letters in the Latin alphabet, we talk about the ways in which readers typically break up words into smaller units, and the fact that the way letters are shaped can make them easier to parse. There’s some technical language here, ligatures, X-height, apertures, and more, which tell us about the shaping and spacing of letters. Giulia explains the current state of research into how these characteristics of fonts can affect readability.</p>\n\n\n\n<p>We talk about whether or not there are fonts which are more readable than others. Is there a collection of fonts which you can use and be confident that you’re going to make it easy for all users of your websites?</p>\n\n\n\n<p>Giulia talks about how designs need to consider the spaces into which text is put. Most people have a proclivity for the order in which they view a page, and knowing about this path across the page can help your readers access the text. The width of the text is also important; you want people to be able to read from side to side without having to move their head. How does this work across different device sizes, and what can be said about text which runs from right to left, or top to bottom?</p>\n\n\n\n<p>We round off the conversation with Giulia telling us where we can find out more, as well as some of the thought leaders in this space.</p>\n\n\n\n<p>It’s a fascinating conversation about a subject that often gets overlooked. Website designers, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p>Giulia&#8217;s WordCamp Europe 2023 Session &#8220;<a href=\"https://europe.wordcamp.org/2023/session/typographic-readability-in-theme-design-development/\">Typographic readability in theme design &amp; development</a>&#8220;</p>\n\n\n\n<p><a href=\"https://thereadabilityconsortium.org/\">The Readability Consortium</a></p>\n\n\n\n<p><a href=\"https://fonts.google.com/specimen/Amatic+SC\">Amantic Small Caps font</a></p>\n\n\n\n<p><a href=\"https://djr.com/\">David Jonathan Ross&#8217; website</a></p>\n\n\n\n<p><a href=\"https://www.w3.org/WAI/standards-guidelines/wcag/\">Web Accessibility Guidelines website</a></p>\n\n\n\n<p><a href=\"https://en.wikipedia.org/wiki/Bruno_Maag\">Bruno Maag Wikipedia page</a></p>\n\n\n\n<p><a href=\"https://fonts.google.com/\">Google fonts</a></p>\n\n\n\n<p><a href=\"https://archive.org/details/elementsoftypogr0000brin\">Robert Bringhurst&#8217;s The Elements of Typographic Style</a></p>\n\n\n\n<p><a href=\"https://www.oreilly.com/library/view/stop-stealing-sheep/9780133441147/\">Erik Spiekermann&#8217;s Stop Stealing Sheep and Find Out How Type Works</a></p>\n\n\n\n<p><a href=\"https://book.webtypography.net/\">Richard Rutter&#8217;s Web Typography</a></p>\n\n\n\n<p><a href=\"https://rwt.io/\">Jason Parmental&#8217;s website</a></p>\n\n\n\n<p><a href=\"https://www.linkedin.com/in/giulialaco/\">Giulia&#8217;s LinkedIn page</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 26 Jul 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"WordPress.org blog: WordPress 6.3 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15460\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7320:\"<p>WordPress 6.3 RC2 is ready for download and testing.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development.</strong> <strong>Please do not install, or run, or test this version on production or mission-critical websites.</strong> Instead, you should evaluate RC2 on a test server and site.&nbsp;</p>\n\n\n\n<p>While release candidates are considered ready for final release, additional testing and use by the community can only make it better.</p>\n\n\n\n<p>WordPress 6.3 is scheduled for release on August 8, 2023 – just two weeks from today.</p>\n\n\n\n<p>Get an overview of the <a href=\"https://make.wordpress.org/core/6-3/\">6.3 release cycle</a>, check the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a> for <a href=\"https://make.wordpress.org/core/tag/6-3/\">6.3-related posts</a>, review <a href=\"https://wordpress.org/news/2023/06/wordpress-6-3-beta-2/\">new features in WordPress 6.3</a>, or <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\">watch a recorded demo</a>.</p>\n\n\n\n<p>Developers and extenders should review the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">comprehensive WordPress 6.3 Field Guide</a> for detailed technical notes regarding new features and improvements.&nbsp;&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">RC2 Highlights</h2>\n\n\n\n<p>Since the RC1 release on July 18, 2023, there have been approximately 15 issues resolved in <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.3\">Editor</a> and <a href=\"https://core.trac.wordpress.org/query?status=accepted&status=closed&changetime=07%2F18%2F2023..07%2F25%2F2023&milestone=6.3&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Trac</a>.</p>\n\n\n\n<p>Notable updates for this release include:</p>\n\n\n\n<ul>\n<li>Footnotes will be reverted or restored with post revisions (<a href=\"https://github.com/WordPress/gutenberg/pull/52686\">#52686</a>).</li>\n\n\n\n<li>Distraction free adds a missing command in the site editor (<a href=\"https://github.com/WordPress/gutenberg/pull/52868\">#52868</a>).</li>\n\n\n\n<li>Global styles revisions will display text if no revisions are found (<a href=\"https://github.com/WordPress/gutenberg/pull/52865\">#52865</a>).</li>\n\n\n\n<li>The About Page has been completed (<a href=\"https://core.trac.wordpress.org/ticket/58067\">#58067</a>).</li>\n\n\n\n<li>The About Page now includes a “Get Involved” section (<a href=\"https://core.trac.wordpress.org/ticket/23348\">#23348</a>).</li>\n\n\n\n<li>The dark mode option has been restored in the block editor iframe for Twenty Twenty-One (<a href=\"https://core.trac.wordpress.org/ticket/58835\">#58835</a>).</li>\n\n\n\n<li>Max height value was fixed in the image scaling in the Edit Media screen (<a href=\"https://core.trac.wordpress.org/ticket/50523\">#50523</a>).</li>\n\n\n\n<li>Additionally, some issues regarding internationalization were addressed (<a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58879\" target=\"_blank\">#58879</a>, <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58067\" target=\"_blank\">#58067</a> and <a rel=\"noreferrer noopener\" href=\"https://core.trac.wordpress.org/ticket/58864\" target=\"_blank\">#58864</a>).</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Test features in WordPress 6.3</h2>\n\n\n\n<p>Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute—whether you have experience or not. While testing the upgrade process is essential, trying out new features is too.&nbsp;</p>\n\n\n\n<ul>\n<li>Encountered an issue? Please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</li>\n\n\n\n<li>New to testing? This <a href=\"https://make.wordpress.org/test/2023/06/27/help-test-wordpress-6-3/\">detailed guide</a> is a great place to start if you’ve never tested a beta/RC release.</li>\n\n\n\n<li>Want to know more about testing releases in general? Follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> in <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Vulnerability bounty doubles during the Beta/RC phases</h2>\n\n\n\n<p>The monetary reward for reporting new, unreleased security vulnerabilities is doubled between the Beta 1 release and the final release candidate (RC). Please follow responsible disclosure practices as detailed in the project’s security practices and policies outlined on the <a href=\"https://hackerone.com/wordpress\">HackerOne page</a> and in the <a href=\"https://wordpress.org/about/security/\">security white paper</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get WordPress 6.3 RC2</h2>\n\n\n\n<p>You can test WordPress 6.3 RC2 in three ways:</p>\n\n\n\n<ul>\n<li><strong>Option 1:</strong> Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</li>\n\n\n\n<li><strong>Option 2: </strong>Direct download the <a href=\"https://wordpress.org/wordpress-6.3-RC2.zip\">RC2 version (zip)</a>.</li>\n\n\n\n<li><strong>Option 3:</strong> Use the following WP-CLI command:<br /><code>wp core update --version=6.3-RC2</code></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thanks to WordPress plugin and theme developers</h2>\n\n\n\n<p>Do you build plugins and themes? Your products play an integral role in extending the functionality and value of WordPress for users of all types worldwide.&nbsp;</p>\n\n\n\n<p>Hopefully, you have already tested your themes and plugins with WordPress 6.3 betas by now. With RC2, you will want to continue your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.3.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">Haiku for RC2</h2>\n\n\n\n<p>Time is nearly here<br />WordPress shines thanks to you all<br />Let’s get testing, dear</p>\n\n\n\n<p><em>Thank you to the contributors who collaborated on this post: <a href=\"https://profiles.wordpress.org/priethor/\">@Priethor</a></em>,<em> <a href=\"https://profiles.wordpress.org/audrasjb/\">@AudrasJb</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald/\">@DavidBaumwald</a>, <a href=\"https://profiles.wordpress.org/dansoschin/\">@DanSoschin</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">@JPantani</a></em> and <em><a href=\"https://profiles.wordpress.org/meher/\">@Meher</a></em>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jul 2023 16:43:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Meher Bala\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"WordCamp Central: WordCamp Malaysia 2023 is Looking for Speakers and Sponsors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3240139\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://central.wordcamp.org/news/2023/07/wordcamp-malaysia-2023-is-looking-for-speakers-and-sponsors/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2991:\"<img src=\"https://malaysia.wordcamp.org/2023/files/2023/06/WCMY-2023-Feature-Image-fb.png\" alt=\"\" />\n\n\n\n<p>WordCamp Malaysia 2023 is set to take place on 8-9 September 2023 at the Cheras North International Convention Centre (CNICC) in Kuala Lumpur, Malaysia. The first ever WordCamp Malaysia promises to be an unforgettable gathering, offering a platform for knowledge sharing, networking, and community building.</p>\n\n\n\n<img src=\"https://i0.wp.com/malaysia.wordcamp.org/2023/files/2023/06/CNICC-Cheras-North-International-Convention-Centre-edited.jpg?resize=680%2C382&ssl=1\" alt=\"\" class=\"wp-image-1017\" />\n\n\n\n<p>Situated near the city center, CNICC provides convenient access to major transportation hubs, allowing attendees to make the most of their time in Kuala Lumpur. With a plethora of nearby amenities and attractions, visitors can immerse themselves in the city’s rich cultural experiences, explore its iconic landmarks, indulge in its diverse culinary scene, and even venture into the nearby natural parks.</p>\n\n\n\n<img src=\"https://i0.wp.com/malaysia.wordcamp.org/2023/files/2023/06/IMG_0612.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-990\" />\n\n\n\n<p>The organizing team behind WordCamp Malaysia 2023 is actively seeking speakers who can share their valuable insights, expertise, experiences, and inspiring stories with the WordPress community. If you have a passion for WordPress and a desire to contribute to its growth, this is your chance to shine. Interested individuals can&nbsp;<a href=\"https://malaysia.wordcamp.org/2023/call-for-speakers/\">submit speaker proposals now</a>. Don’t miss the opportunity to be part of this prestigious event and make an impact on the WordPress community in Malaysia.</p>\n\n\n\n<img src=\"https://i0.wp.com/malaysia.wordcamp.org/2023/files/2023/06/HRX00555.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-989\" />\n\n\n\n<p>In addition to speakers, WordCamp Malaysia 2023 is also actively seeking sponsors to showcase and elevate their brands and products to the WordPress community in Malaysia. This is an exceptional opportunity for businesses and organizations to gain exposure, connect with a highly engaged audience, and demonstrate their commitment to supporting the WordPress ecosystem. To explore the various sponsorship packages available and learn more about the benefits of becoming a sponsor, interested parties can visit&nbsp;<a href=\"https://malaysia.wordcamp.org/2023/call-for-sponsors/\">the call for sponsors page</a>.</p>\n\n\n\n<p>To stay updated and learn more about WordCamp Malaysia 2023, visit the official website at&nbsp;<a href=\"https://malaysia.wordcamp.org/2023/\">https://malaysia.wordcamp.org/2023/</a>&nbsp;. The website will serve as your go-to resource for event details, schedules, ticketing information, speaker profiles, and other important announcements.</p>\n\n\n\n<p>Don’t miss your chance to be part of WordCamp Malaysia 2023. Submit your speaker proposal or explore sponsorship opportunities today!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jul 2023 12:53:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Sam Suresh\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:134:\"WordCamp Central: WordCamp Masaka 2023: Celebrating Inclusion, Diversity, and Innovation with WordPress in Uganda’s Pearl of Africa!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://central.wordcamp.org/?p=3166793\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:152:\"https://central.wordcamp.org/news/2023/07/wordcamp-masaka-2023-celebrating-inclusion-diversity-and-innovation-with-wordpress-in-ugandas-pearl-of-africa/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3351:\"<p><a href=\"https://masaka.wordcamp.org/2023/\">WordCamp Masaka 2023</a> is the inaugural WordCamp event in Uganda&#8217;s Greater Masaka region. It will be held on <strong>October 6 and 7, 2023</strong>, at <a href=\"https://equsat.ac.ug/\">Equator University of Science and Technology</a> in Masaka City, Uganda. The event is dedicated to celebrating inclusion, diversity and fostering innovation within Uganda&#8217;s WordPress community.</p>\n\n\n\n<p>WordCamp Masaka 2023 will offer a wide range of engaging workshops, informative talks, and student WordPress project showcases designed to cater to attendees of different skill levels. The workshops will provide hands-on learning experiences and practical knowledge to help both beginners and advanced users enhance their WordPress skills. The informative talks will cover a diverse range of topics, providing valuable insights and inspiring discussions. The student WordPress project showcases will offer a platform for attendees to share their WordPress projects, regardless of their skill level, and gain inspiration from the creativity within the community.</p>\n\n\n\n<p>In addition to the diverse range of activities, WordCamp Masaka 2023 will include a contributor session dedicated to translating WordPress from English to Luganda. This session will actively engage participants of all skill levels in the translation process, fostering collaboration and empowering Luganda (the most spoken language in Uganda) speakers to access WordPress in their native language.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Get Involved</h2>\n\n\n\n<ul>\n<li><a href=\"https://masaka.wordcamp.org/2023/tickets/\">Purchase Attendee Tickets</a>: Secure your tickets to join the WordPress community in celebrating this inaugural event in the Greater Masaka region, Uganda. Tickets are available for purchase, offering a unique opportunity to engage with like-minded individuals and expand your WordPress knowledge.</li>\n\n\n\n<li><a href=\"https://masaka.wordcamp.org/2023/call-for-sponsors/\">Call for Sponsors</a>: Support the first-ever WordCamp Masaka and gain visibility for your company. Explore available sponsorship options to contribute to the success of this event and demonstrate your commitment to the WordPress community.</li>\n\n\n\n<li><a href=\"https://masaka.wordcamp.org/2023/call-for-speakers/\">Call for Speakers</a>: Share your expertise, experiences, and insights by applying to be a speaker at WordCamp Masaka 2023. The call for speaker applications welcomes submissions, allowing you to contribute to a diverse range of topics during the event.</li>\n\n\n\n<li><a href=\"https://masaka.wordcamp.org/2023/call-for-volunteers/\">Call for volunteers</a>: Apply to be a volunteer and actively participate in the organization of WordCamp Masaka 2023. Volunteering offers a unique opportunity to contribute behind the scenes and play an integral role in the success of this inaugural event.</li>\n</ul>\n\n\n\n<p>The full list of speakers, session descriptions, and schedule will be published in early September 2023. Be sure to follow us on <a href=\"https://twitter.com/WordPressMasaka\">Twitter</a> and <a href=\"https://www.facebook.com/WordCampMasaka\">Facebook</a> to get the latest updates.</p>\n\n\n\n<p>Please don&#8217;t forget to post about this event on your social media handles using the hashtag <strong>#WCMasaka</strong>. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 25 Jul 2023 08:50:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Ssebuwufu Moses\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WPTavern: Learn How to Use WordPress Playground\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147137\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com/learn-how-to-use-wordpress-playground\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3215:\"<p>WordPress Playground, an experimental project that uses WebAssembly (WASM) to <a href=\"https://wptavern.com/new-prototype-runs-wordpress-in-the-browser-with-no-php-server\">run WordPress in the browser</a>, was <a href=\"https://twitter.com/dbchhbr/status/1679949344315936769\">number 1 on Hacker News</a> recently and was also <a href=\"https://techcrunch.com/2023/07/18/wordpress-playground-lets-you-run-wordpress-entirely-in-your-browser/\">featured on TechCrunch</a>. Word is getting around about how easy it is to fire up a sandbox environment in just a few seconds for testing plugins and themes and even different versions of WordPress and PHP.</p>\n\n\n\n<p>Visiting <a rel=\"noreferrer noopener\" href=\"https://playground.wordpress.net/\" target=\"_blank\"><code>playground.wordpress.net</code></a> instantly creates a real WordPress instance with admin access and everything without having to install PHP, MySQL, or Apache. Instead, it runs inside the browser using a SQLite database.</p>\n\n\n\n<p>The Playground isn&#8217;t just for developers. It also makes it easy for users who would not ordinarily maintain a local development environment to quickly test plugins or themes they find on WordPress.org, or to just explore new WordPress features in a safe place where you can&#8217;t break anything.</p>\n\n\n\n<p>If you have found it difficult to wrap your head around WordPress Playground, Learn WordPress has published a timely new tutorial called <a href=\"https://learn.wordpress.org/tutorial/how-to-start-using-wordpress-playground/\">How to start using WordPress Playground</a>. In this 10-minute video, WordPress Playground creator Adam Zieliński offers a quick demonstration of how to install plugins and themes and customize a site, and how to export design work from a customized theme. He also covers how to download the entire site and import it into a new WordPress instance, and guides users through basic compatibility testing of a theme, by switching the WordPress version on the playground site.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1878\" height=\"1048\" />Learn WordPress Tutorial: <a href=\"https://learn.wordpress.org/tutorial/how-to-start-using-wordpress-playground/\">How to start using WordPress Playground</a>\n\n\n\n<p>Developers who want try some more complicated things with this tool can check out the <a href=\"https://wordpress.github.io/wordpress-playground/docs/apis-overview\">Playground API</a> and learn <a href=\"https://developer.wordpress.org/playground/\">how to integrate it with an app</a> in five minutes. It&#8217;s also useful for <a rel=\"noreferrer noopener\" href=\"https://wordpress.github.io/wordpress-playground/docs/build-your-first-app#preview-pull-requests-from-your-repository\" target=\"_blank\">previewing pull requests from a repository</a> or setting up a local WordPress development environment using the <a rel=\"noreferrer noopener\" href=\"https://marketplace.visualstudio.com/items?itemName=WordPressPlayground.wordpress-playground\" target=\"_blank\">VisualStudio Code plugin</a> or <a rel=\"noreferrer noopener\" href=\"https://github.com/WordPress/playground-tools/tree/trunk/packages/wp-now\" target=\"_blank\">a CLI tool called <code>wp-now</code></a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Jul 2023 22:09:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"WPTavern: Mojeek Search Engine Adds WordPress’ Openverse to Image Search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147123\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/mojeek-search-engine-adds-wordpress-openverse-to-image-search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2116:\"<img width=\"2292\" height=\"1320\" />\n\n\n\n<p><a href=\"https://www.mojeek.com/\">Mojeek</a>, a UK-based privacy-oriented search engine, has <a href=\"https://blog.mojeek.com/2023/07/expanding-mojeeks-image-search-with-openverse.html\">added Openverse to its image search</a>. For more than 15 years, Mojeek has provided independent, unbiased search without tracking or building profiles on users. It is one of just a handful of genuine search engines that uses its own technology and algorithms, unlike the metasearch engines that syndicate Bing, Google, and Yandex. In October 2022, Mojeek passed a major milestone of having <a href=\"https://blog.mojeek.com/2022/10/mojeek-now-six-billion-pages.html\">indexed more than 6 billion pages</a>. </p>\n\n\n\n<p>The search engine had previously provided Pixabay as the default for its image search with the option to use Bing as an alternative.</p>\n\n\n\n<p>&#8220;We have always wanted to eventually get rid of Bing,&#8221; Mojeek Head of Marketing Joshua Long said. &#8220;Due to both Microsoft&#8217;s API pricing decisions, and informed comments by people using Mojeek to search the web, we recently took that step.&#8221;</p>\n\n\n\n<p>Openverse&#8217;s openly-licensed media was a natural fit for the independent search engine. In 2021, Creative Commons Search was <a href=\"https://wptavern.com/creative-commons-search-is-now-openverse\">rebranded to Openverse</a> when it came under the umbrella of the WordPress open source project. With more than 700 million Creative Commons licensed and public domain image and audio files, Openverse exceeds Pixabay&#8217;s 4 million+ royalty-free and stock images, greatly expanding users&#8217; abilities to search deeper on more topics.</p>\n\n\n\n<p>Although Pixabay is still Mojeek&#8217;s default image search provider, users can change their <a href=\"https://www.mojeek.com/preferences\">preferences</a>, which are set using a local cookie and contain no personal data.</p>\n\n\n\n<p>&#8220;This addition is a testament to the utility that Openverse brings, as well as the ease and extensibility when it comes to using its API,&#8221; Long said.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Jul 2023 20:30:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"Do The Woo Community: A Deep Dive into Sales Tax for Agencies and Freelancers with Kate Bacholzky and Roger Walker\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75724\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://dothewoo.io/deep-dive-into-sales-tax-agencies-freelancers/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:464:\"<p>Kate Bacholzky from Avalara and Roger Walker from americaneagle.com take you deep into sales tax for yourself and your clients.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/deep-dive-into-sales-tax-agencies-freelancers/\">A Deep Dive into Sales Tax for Agencies and Freelancers with Kate Bacholzky and Roger Walker</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 24 Jul 2023 09:08:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"Gutenberg Times: All about WordPress 6.3, a breadcrumbs block, design systems and an onboarding wizard – Weekend Edition 262\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=24897\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"https://gutenbergtimes.com/all-about-wordpress-6-3-a-breadcrumbs-block-design-systems-and-an-onboarding-wizard-weekend-edition-262/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24302:\"<p>Howdy, </p>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-release-candidate-1/\">WordPress 6.3 release candidate</a> has been published and with it the <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">Fieldguide</a> with the array of changes for developers is now available. It&#8217;s a lot to digest, so we&#8217;ll keep this newsletter short. Or rather focused on the upcoming major release. Pick and choose, depending on what&#8217;s important to your work with WordPress. </p>\n\n\n\n<p>If you have something on your Wishlist for WordPress 6.4, submit a comment: <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-4-whats-on-your-wishlist/\">WordPress 6.4: What’s on your wishlist?</a> (until Aug. 15)</p>\n\n\n\n<p>Be well and have a fantastic weekend! </p>\n\n\n\n<p>Yours, ?<br /><em>Birgit</em></p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">All about WordPress 6.3</a><ul><li><a href=\"https://gutenbergtimes.com/feed/#1-word-press-6-3\">Fieldguide Dev Notes WordPress 6.3 </a></li></ul></li><li><a href=\"https://gutenbergtimes.com/feed/#2-g\">Gutenberg 16.2</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">All about WordPress 6.3</h2>\n\n\n\n<p>This week&#8217;s product walk through with <strong>Anne McCarthy</strong>, <strong>Rich Tabor</strong> and Nathan Wrigley is now available:  <a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\"><strong>WordPress 6.3 Live Product Demo – Highlights &amp; Recording</strong></a>. </p>\n\n\n\n<a href=\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\"><img /></a>\n\n\n\n<p><strong>Jonathan Patani</strong> also published the Q &amp; A from the Project Walk through on the Make Core blog: <a href=\"https://make.wordpress.org/core/2023/07/21/6-3-live-product-demo-qa/\"><strong>6.3 Live Product Demo Q&amp;A</strong></a>. You&#8217;ll learn that to add a footnote to a paragraph you just place the cursor where the number should go and use the drop-down menu from the block toolbar. Safe yourself the highlight step. Furthermore, &#8220;The revisions show changes for all styles, including changes made when viewing the stylebook.&#8221; Those are only two of the 14 questions and answers. You can also find a ton of resources that were shared during the walk-through. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Femy Praseeth</strong>, release squad member on the docs team, published a <strong><a href=\"https://make.wordpress.org/docs/2023/07/18/call-for-volunteers-to-help-with-6-3-end-user-documentation/\">Call for volunteers to help with 6.3 end-user documentation</a>. </strong>The best advice, I received when starting out in technology was: &#8220;If you want to learn anything in technology deeply, you try to explain it to others.&#8221; Here is your chance to do both. It&#8217;s also a high-impact contribution to the open-source project! As of this writing, there are still 42 tasks in the to-do-column of <a href=\"https://github.com/orgs/WordPress/projects/108/views/9\">the project board</a>, waiting for you! </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>On the WP Briefing <a href=\"https://wordpress.org/news/2023/07/episode-60-sneak-a-peek-at-wordpress-6-3-with-special-guest-mike-schroder/\"><strong>Episode 60: Mike Schroder gave a sneak a peek at WordPress 6.3 </strong></a>together with <strong>Josepha Haden Chomphosy</strong>. All links and transcript are shared on the post. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Carlo Daniele</strong> at Kinsta did again a wonderful job reporting on the upcoming major WordPress release. <strong><a href=\"https://kinsta.com/blog/wordpress-6-3/\">What’s New in WordPress 6.3: A Revamped Site Editor, a New Command Palette, Style Revisions, New Blocks, and Much More!</a></strong></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Doc Pop </strong>at Torque Magazine<strong>, </strong>invited me to speak with him about WordPress 6.3 and what&#8217;s coming to WordPress Phase 3 and WordPress 6.4. <a href=\"https://www.youtube.com/watch?v=YxEUmifzGlM\"><strong>Torque Social Hour: Understanding WordPress 6.3 with Birgit Pauli-Haack</strong></a>. We discussed and demoed the new footnotes, Details block, Style Variation revisions, Site Editor updates, Stylebook and more. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anne McCarthy</strong>  highlights all the accessibility improvements that will come with WordPress 6.3 in this post: <a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\"><strong>WordPress 6.3 Accessibility Improvements</strong></a>,they co-authored with <strong>Joe Dolson</strong> and <strong>Alex Stine</strong>, members of the WordPress Accessibility Team </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jamie Marsland </strong>explains <a href=\"https://www.youtube.com/watch?v=aTq8v2EjG_I\"><strong>WordPress 6.3 explained in 240 seconds</strong></a>, He covers the two new blocks, Footnotes and Details, many of the Pattern changes, aspect ratio for image blocks, enhancements to the Site Editor, Style revision and more. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>For all the WordPress News outlets, <strong>Anne McCarthy</strong> provided a <a href=\"https://nomad.blog/2023/07/17/wordpress-6-3-source-of-truth/\"><strong>Source of Truth for WordPress 6.3 </strong></a>document, actually it&#8217;s more like a book with over 8,000 words. In it, they list  every single feature and update that went into the WordPress 6.3 release, so journalists and bloggers can dig deeper into things and obtain the history, discussions, and overall genesis of a change. It&#8217;s a mammoth of a post. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Dave Smith</strong> published a video on the upcoming release: <a href=\"https://www.youtube.com/watch?v=PKcMhSgBt40\"><strong>WordPress 6.3 features in 6 mins &#8211; the power of the Site Editor is finally unleashed!</strong></a> Smith also shared a ton of links to details for the features, if you&#8217;d like to take a deeper dive. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h3 class=\"wp-block-heading\" id=\"1-word-press-6-3\">Fieldguide Dev Notes WordPress 6.3 </h3>\n\n\n\n<p>The release doc team assembled a huge <a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">Fieldguide</a> with all the Dev Notes covering the big and small changes to WordPress. Here is the list of Block editor related Dev Notes: </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-block-selectors-api/\">Introducing the Block Selectors API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/social-icons-block-applied-colors-now-dynamically-update-based-on-theme-json-and-global-styles/\">Social Icons block: Applied colors now dynamically update based on theme.json and Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/miscellaneous-editor-changes-in-wordpress-6-3/\">Miscellaneous Editor changes in WordPress 6.3</a></li>\n</ul>\n\n\n\n<p><strong>But wait, there is more</strong>, quoted from the Fieldguide. </p>\n\n\n\n<ul>\n<li>Anghami has been added as a trusted oEmbed provider. (<a href=\"https://core.trac.wordpress.org/ticket/49850\">#49850</a>)</li>\n\n\n\n<li>Support for TikTok creator profiles has been added. (<a href=\"https://core.trac.wordpress.org/ticket/55784\">#55784</a>)</li>\n\n\n\n<li>A new&nbsp;<code>source</code>&nbsp;attribute is added to Block patterns allowing them to be filtered by that source. (<a href=\"https://core.trac.wordpress.org/ticket/58622\">#58622</a>)</li>\n\n\n\n<li>The&nbsp;<code>Themes REST API</code>&nbsp;can now indicate whether a theme supports the Site Editor by adding an&nbsp;<code>is_block_theme&nbsp;</code>property to each theme in the&nbsp;<code>wp/v2/themes</code>&nbsp;API response. (<a href=\"https://core.trac.wordpress.org/ticket/58123\">#58123</a>)</li>\n\n\n\n<li>A&nbsp;revisions&nbsp;endpoint for global styles,&nbsp;<code>/wp/v2/global-styles/revisions</code>, has been added to the REST API. (<a href=\"https://core.trac.wordpress.org/ticket/58524\">#58524</a>)</li>\n\n\n\n<li><code>WP_REST_Templates_Controller</code>&nbsp;has a new&nbsp;<code>modified</code>&nbsp;field for template and template part objects that returns post modified datetime for Templates. (<a href=\"https://core.trac.wordpress.org/ticket/58540\">#58540</a>)</li>\n\n\n\n<li>A new public function&nbsp;<code>wp_get_remote_theme_patterns()</code>&nbsp;has been added to query the&nbsp;<code>patterns</code>&nbsp;datum from&nbsp;<code>theme.json</code>&nbsp;and substitutes current usage of private APIs. (<a href=\"https://core.trac.wordpress.org/ticket/58460\">#58460</a>)</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-g\">Gutenberg 16.2</h2>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p class=\"is-style-no-vertical-margin\"><strong>?️ </strong> Latest episode: <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-87/\">Gutenberg Changelog #87 – Patterns, Gutenberg 16.3 and WordPress 6.3.</a> with Anne McCarthy as special guest, hosted by Birgit Pauli-Haack</p>\n</div></div>\n</div></div>\n\n\n\n<p><strong>Sarah Gooding</strong> wrote about the latest Gutenberg release: <a href=\"https://wptavern.com/gutenberg-16-2-brings-improvements-to-pattern-management-introduces-vertical-text-orientation\"><strong>Gutenberg 16.2 Brings Improvements to Pattern Management, Introduces Vertical Text Orientation</strong></a> and highlighted, among other things, the vertical text orientation, illustrated by <a href=\"https://twitter.com/bph/status/1679464594283155458\">my tweet</a>. To enable the controls in the typography section, you need to turn it on via  the theme.json settings. </p>\n\n\n<pre class=\"wp-block-code has-primary-color has-border-background-color has-text-color has-background\"><span><code class=\"hljs language-json shcb-code-table shcb-line-numbers\"><span class=\"shcb-loc\"><span><span class=\"hljs-string\">\"typography\"</span>:{\n</span></span><span class=\"shcb-loc\"><span>      <span class=\"hljs-attr\">\"dropCap\"</span>: <span class=\"hljs-literal\">false</span>,\n</span></span><span class=\"shcb-loc\"><span>      <span class=\"hljs-attr\">\"fluid\"</span>: <span class=\"hljs-literal\">true</span>,\n</span></span><span>      <span class=\"hljs-attr\">\"writingMode\"</span>:<span class=\"hljs-literal\">true</span>,\n</span><span class=\"shcb-loc\"><span>}\n</span></span></code></span><small class=\"shcb-language\" id=\"shcb-language-11\"><span class=\"shcb-language__label\">Code language:</span> <span class=\"shcb-language__name\">JSON / JSON with Comments</span> <span class=\"shcb-language__paren\">(</span><span class=\"shcb-language__slug\">json</span><span class=\"shcb-language__paren\">)</span></small></pre>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Emily Shiola</strong> also checked out the latest Gutenberg version in her article: <a href=\"https://torquemag.io/2023/07/whats-new-in-gutenberg-the-latest-version/\"><strong>What’s New in Gutenberg: The Latest Version (July 2023)</strong></a> and updated her collection of highlights from every Gutenberg release back to Gutenberg 7.0. in November 2019. I bookmarked the post for later to walk down memory lane. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Nick Diego</strong> held a workshop on <a href=\"https://wordpress.tv/2023/07/18/builder-basics-goodbye-reusable-blocks-hello-synced-patterns-and-more/\"><strong>Builder Basics: Goodbye Reusable Blocks—Hello Synced Patterns (and more) </strong></a>and the recording is now available on WordPress.TV. Reusable blocks are a powerful way to save and reuse content across your site. In WordPress 6.3, reusable blocks will be renamed to “synced patterns.” In this online workshop, Diego explored the new functionality for creating custom patterns and managing them in the Site Editor.</p>\n\n\n\n\n<div class=\"ngl-articles colored ngl-articles-50_50 ngl-articles-frontend\">\n\n	\n	<div class=\"ngl-articles-wrap ngl-articles-webview\">\n	\n						\n			<div class=\"ngl-article-mobile\">\n				<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n					<tr>\n						<td valign=\"top\">\n							<div class=\"ngl-article-mob-wrap\">\n							<div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/introducing-the-breadcrumbs-wordpress-block-plugin/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/07/breadcrumbs-block.jpg?w=652&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/introducing-the-breadcrumbs-wordpress-block-plugin/\" target=\"_self\" rel=\"\"><span>Introducing the Breadcrumbs WordPress Block Plugin</span></a></div><div class=\"ngl-article-excerpt\">In 2009, I announced the release of my first breadcrumbs plugin. It was a one-file PHP script that I&rsquo;d been using in my themes for around a year, and I&hellip; <a href=\"https://gutenbergtimes.com/introducing-the-breadcrumbs-wordpress-block-plugin/\" class=\"ngl-article-read-more\" target=\"_self\">Check it out</a></div>							</div>\n						</td>\n					</tr>\n				</table>\n			</div>\n			\n			\n			\n\n		\n		\n		</div>\n\n</div>\n\n\n\n\n<p>In her article: <a href=\"https://wptavern.com/ollie-theme-previews-new-onboarding-wizard-in-development\"><strong>Ollie Theme Previews New Onboarding Wizard in Development</strong></a>, <strong>Sarah Gooding</strong> reported on <strong>Mike McAlister</strong>&#8216;s newest work developing an onboarding experience that aims to drastically reduce the amount of time users spend setting up a new site. &#8220;McAlister said the interface is all React with largely native WordPress components and a few custom components sprinkled in to handle some of the more unique aspects of the tool.&#8221; she wrote. </p>\n\n\n\n<p><strong>Mike McAlister</strong> posted about the new onboarding Wizard on hit blog as well:<strong> I<a href=\"https://olliewp.com/in-pursuit-of-a-more-intuitive-onboarding-experience/\">n </a></strong><a href=\"https://olliewp.com/in-pursuit-of-a-more-intuitive-onboarding-experience/\"><strong>pursuit of a more intuitive onboarding experience</strong></a>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>With LocalWP it is a straightforward tool to set up a new development site for testing or other purposes on your computer. With blueprints, you and configure a standard set-up with a set of plugins and themes. This week, <strong>Brian Gardner</strong><a href=\"https://wpengine.com/builders/frost-blueprint-local/\"> <strong>Introduced the Frost Blueprint for Local</strong></a>. &#8220;A Local Blueprint that draws inspiration from <a href=\"https://frostwp.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Frost</a>, our <a href=\"https://wordpress.org/themes/frost/\" target=\"_blank\" rel=\"noreferrer noopener\">open-source</a> WordPress block theme. This Blueprint showcases the power and extensibility of Full Site Editing.&#8221; he wrote. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong>Justin Tadlock</strong> published the first part of his upcoming <em>Beyond Block Styles</em> series: <a href=\"https://developer.wordpress.org/news/2023/07/beyond-block-styles-part-1-using-the-wordpress-scripts-package-with-themes/\"><strong>Using the WordPress scripts package with themes</strong></a>. He walks you through the details of setting up your local development space to get ready for block development. &#8220;In Part 2, you’ll learn to design a set of custom block styles. Part 3 will bring it all together into a beautiful and functional editor control. From there, well, you’ll be building some amazing features.&#8221; Tadlock wrote. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Yesterday&#8217;s Live Q &amp; A: <a href=\"https://www.youtube.com/live/6-Epjq3FYSs?feature=share\"><strong>Design Systems and theme.json</strong></a> with <strong>David Bowman</strong>, <strong>Alec Geatches</strong> and <strong>Joni Halabi</strong> was recorded and is available on YouTube. Shared resources</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/Automattic/vip-design-system-bridge\">Repository for the design bridge</a></li>\n\n\n\n<li><a href=\"https://github.com/Automattic/vip-design-system-bridge/blob/trunk/docs/design-tokens-example/README.md\">Tutorial</a> </li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/course/develop-your-first-low-code-block-theme/\">Develop Your First Low-Code Block Theme</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/courses/#using-the-site-editor\">Using the Site Editor Courses: </a></li>\n\n\n\n<li><a href=\"https://wordpress.org/plugins/create-block-theme/\">Plugin Create-Block-Theme</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/41547\">Governing block settings and interactions</a></li>\n\n\n\n<li><a href=\"https://github.com/Automattic/vip-block-data-api/\">VIP Block Data API</a></li>\n\n\n\n<li><a href=\"https://github.com/Automattic/vip-governance-plugin\">VIP Governance plugin</a></li>\n</ul>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2023 on. Updated by yours truly.  <em><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">The index 2022 is here</a></em></p>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>In last week&#8217;s Twitch stream, Ryan Welcher <strong><a href=\"https://www.twitch.tv/videos/1870840777\">explored the existing SlotFills for extending WordPress</a>.</strong>  It&#8217;s an longer version of a <a href=\"https://wordpress.tv/2023/06/30/developer-hours-exploring-editor-extensibility/\">previous talk at Developer Hours</a> a few weeks ago . He walks you through all the Slotfill existing in the post editor as well as the Site editor.  Welcher e also wrote about on the topic on WordPress Developer blog: <a href=\"https://developer.wordpress.org/news/2022/11/how-to-extend-wordpress-via-the-slotfill-system/\">How to extend WordPress via the SlotFill system</a> and presented<a href=\"https://wordpress.tv/2022/11/18/extending-wordpress-using-slotfill/\"> at WCUS 2022. </a></p>\n\n\n\n\n<div class=\"ngl-articles colored ngl-articles-50_50 ngl-articles-frontend\">\n\n	\n	<div class=\"ngl-articles-wrap ngl-articles-webview\">\n	\n						\n			<div class=\"ngl-article-mobile\">\n				<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n					<tr>\n						<td valign=\"top\">\n							<div class=\"ngl-article-mob-wrap\">\n							<div class=\"ngl-article-featured\"><a href=\"https://gutenbergtimes.com/live-q-a-leveraging-gutenbergs-architecture-to-take-plugin-development-to-new-levels/\" target=\"_self\" rel=\"\"><img src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2023/07/Gutenberg-LiveQA-Adams-Waldstein-Morita-Pauli-Haack.jpg?w=652&ssl=1\" /></a></div><div class=\"ngl-article-title\"><a href=\"https://gutenbergtimes.com/live-q-a-leveraging-gutenbergs-architecture-to-take-plugin-development-to-new-levels/\" target=\"_self\" rel=\"\"><span>Live Q &#038; A: Leveraging Gutenberg&#8217;s architecture to take plugin development to new levels</span></a></div><div class=\"ngl-article-excerpt\">In this YouTube Live Q &amp; A, participants learned how Gutenberg components and scripts can be used outside the block editor to revamp a plugin&#8217;s code base. Jason Adams, Director&hellip;</div>							</div>\n						</td>\n					</tr>\n				</table>\n			</div>\n			\n			\n			\n\n		\n		\n		</div>\n\n</div>\n\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: <a href=\"https://wordpress.org/photos/photo/690647f4cf/\">Plants growing out of the blocks at the Acropolis by Courtney Robertson found on WordPress Photos</a></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 22 Jul 2023 08:49:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"WPTavern: Ollie Theme Previews New Onboarding Wizard in Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147007\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/ollie-theme-previews-new-onboarding-wizard-in-development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4051:\"<p>Unless you are some kind of wizard with the block editor, starting a WordPress website from a blank slate can be overwhelming and ultimately defeating. Mike McAlister, maker of the <a href=\"https://olliewp.com/\">free Ollie theme</a>, is developing an onboarding experience that aims to drastically reduce the amount of time users spend setting up a new site.</p>\n\n\n\n<p>&#8220;I suspect we’re cutting out a half hour or more of finagling a new WordPress site,&#8221; McAlister <a href=\"https://twitter.com/mikemcalister/status/1681038694239576064\">said</a>. &#8220;No more wrestling with a blank canvas.&#8221;</p>\n\n\n\n<p>The Ollie Onboarding Wizard creates a guided setup experience that allows users to add basic site settings, select a color palette, input their brand colors, add a logo and site icon, and move on to creating pages. It eliminates the necessity of hunting all these settings down inside blocks and the Site Editor.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1983\" height=\"1642\" />\n\n\n\n<p>Instead of having to create pages individually and assign them the correct template or place the right full-page pattern, Ollie onboarding makes it possible for users to simply check which pages they want automatically created.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<img width=\"1983\" height=\"1642\" />\n\n\n\n<p>&#8220;The goal of this wizard is to help WordPress users zoom through a site setup with the Ollie theme and abstract away those annoying and disconnected setup steps we have to do for every site,&#8221; McAlister said.</p>\n\n\n\n<p>&#8220;The wizard is also a way to educate users along the way. WordPress is going through a much-needed evolution, but as expected, users are having a tough time with the transition. Change is tough, especially when you power half of the internet. Workflows like this can help.&#8221;</p>\n\n\n\n<p>The onboarding interface leans heavily towards the design of the Site Editor to make it seem naturally at home inside WordPress. It demonstrates just how nice plugins and themes can look in the admin with a more modern interface, which could soon be a reality once the ambitious <a href=\"https://wptavern.com/wordpress-plans-ambitious-admin-ui-revamp-with-design-system-galvanizing-broad-support-from-the-developer-community\">admin UI revamp plans</a> are complete.</p>\n\n\n\n<p>&#8220;Months ago, Patrick Posner and I agreed that the future of WordPress is in the new Site Editor view, so that’s where we built this wizard,&#8221; McAlister said. &#8220;That assumption has since been validated, and because of that, our interface blends in seamlessly with native WordPress.&#8221;</p>\n\n\n\n<p>&#8220;This is just a v1, but we’re already planning on how to seamlessly integrate choosing a vertical with curated plugins (eCommerce, landing page, email marketing, etc.) and surfacing pro features to really bring this experience together. This isn’t just a WordPress theme.&#8221;</p>\n\n\n\n<p>McAlister said the interface is all React with largely native WordPress components and a few custom components sprinkled in to handle some of the more unique aspects of the tool. </p>\n\n\n\n<p>After previewing the onboarding wizard, some people have asked if it will be available as a standalone product. McAlister confirmed that he doesn&#8217;t have any plans of productizing it but if there is enough demand he is willing to entertain the idea. Others have asked if there is an API for developers to add their own sections.</p>\n\n\n\n<p>&#8220;No API yet, although with the announcements of the admin overhaul initiative, perhaps one is coming,&#8221; McAlister said. &#8220;Right now, this is just a custom React layer that mimics the site editor view. It’s built to be flexible though, so if a core solution opens up, we can migrate to that.&#8221;</p>\n\n\n\n<p>McAlister previewed the wizard on Twitter and in his newsletter, but it&#8217;s still in development and not yet available for testing. He plans to launch the Ollie theme on WordPress.org once the wizard is ready for public use.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 22 Jul 2023 01:03:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Gutenberg Times: Live Q &amp; A: Leveraging Gutenberg’s architecture to take plugin development to new levels\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=24919\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://gutenbergtimes.com/live-q-a-leveraging-gutenbergs-architecture-to-take-plugin-development-to-new-levels/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:61388:\"<p>In this YouTube Live Q &amp; A,  participants learned how Gutenberg components and scripts can be used outside the block editor to revamp a plugin&#8217;s code base.  Jason Adams, Director of Development and Jon Waldstein, Lead Developer from GiveWP walked us through their approach to rebuilding their highly popular Donations plugin using WordPress native interface components and scripts and then also discussed how their code fits into the ecosystem. Lena Morita, a JavaScript developer on the components team. </p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p class=\"has-normal-font-size\"><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-connect-with-the-panelists\">Connect with the Panelists: </a></li><li><a href=\"https://gutenbergtimes.com/feed/#1-resources\">Resources</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-strong-introduction-strong\">Introduction</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-strong-give-wp-plugin-architecture-strong\">Plugin architecture</a></li><li><a href=\"https://gutenbergtimes.com/feed/#4-strong-give-wp-plugin-revamp-strong\">Plugin revamp</a></li><li><a href=\"https://gutenbergtimes.com/feed/#5-strong-give-wp-demo-strong\">Demo</a></li><li><a href=\"https://gutenbergtimes.com/feed/#6-strong-adding-interactivity-how-a-form-works-strong\">Adding interactivity &#8211; how a form works</a></li><li><a href=\"https://gutenbergtimes.com/feed/#7-strong-rendering-strong\">Rendering</a></li><li><a href=\"https://gutenbergtimes.com/feed/#8-strong-validation-strong\">Validation</a></li><li><a href=\"https://gutenbergtimes.com/feed/#9-strong-how-its-built-strong\">How it’s built</a></li><li><a href=\"https://gutenbergtimes.com/feed/#10-strong-give-wp-challenges-strong\">Challenges</a></li><li><a href=\"https://gutenbergtimes.com/feed/#11-strong-incorporating-react-strong\">Incorporating ReactJS</a></li><li><a href=\"https://gutenbergtimes.com/feed/#12-strong-trade-offs-and-compatibility-strong\">Trade-offs and compatibility</a></li><li><a href=\"https://gutenbergtimes.com/feed/#13-strong-support-team-strong\">Support team</a></li><li><a href=\"https://gutenbergtimes.com/feed/#14-strong-sidebar-customization-isolated-block-editor-strong\">Sidebar customization &#8211; isolated Block Editor</a></li><li><a href=\"https://gutenbergtimes.com/feed/#15-strong-making-it-easier-with-documentation-and-components-strong\">Making it easier with documentation and components</a></li><li><a href=\"https://gutenbergtimes.com/feed/#16-strong-some-hard-codes-strong\">Some things are hard-coded</a></li><li><a href=\"https://gutenbergtimes.com/feed/#17-strong-locked-blocks-strong\">Locked blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#18-strong-filters-and-blocks-strong\">Filters and blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#19-strong-announcements-and-contact-info-strong\">Announcements and contact Info</a></li></ul></div>\n</div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-connect-with-the-panelists\">Connect with the Panelists: </h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-18 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\">\n<div class=\"wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-16 wp-block-group-is-layout-flex\">\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Lena Morita</strong></p>\n\n\n\n<ul>\n<li><a href=\"https://profiles.wordpress.org/0mirka00/\">WordPress profile</a></li>\n\n\n\n<li><a href=\"https://twitter.com/mirka\">Twitter @mirka</a></li>\n</ul>\n</div></div>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Jon Waldstein</strong></p>\n\n\n\n<ul>\n<li><a href=\"mailto:jon@givewp.com\">jon@givewp.com</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://twitter.com/jonwaldstein\">Twitter @jonwaldstein</a>&nbsp;</li>\n</ul>\n</div></div>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Jason Adams</strong></p>\n\n\n\n<ul>\n<li><a href=\"mailto:jason.adams@givewp.com\">jason.adams@givewp.com</a></li>\n\n\n\n<li><a href=\"https://twitter.com/jasontheadams\">Twitter @jasontheadams</a>&nbsp;</li>\n</ul>\n</div></div>\n</div>\n</div>\n</div>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"toolbelt-video-wrapper\"></div>\n</div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"1-resources\">Resources</h2>\n\n\n\n<ul>\n<li><a href=\"https://poststatus.com/the-future-of-givewp-and-the-block-editor/\">Post Status: The Future of GiveWP and the Block Editor</a></li>\n\n\n\n<li><a href=\"https://www.youtube.com/watch?v=wCN_M5xvPNY\">Video Walk-through</a> (9 months old, so it has improved since then)</li>\n\n\n\n<li><a href=\"https://givewp.com/lps/next-generation-donation-forms/\">GiveWP Next Gen Landing Page</a> (with ability to demo)</li>\n\n\n\n<li><a href=\"https://github.com/impress-org/givewp-next-gen/\">GiveWP Next Gen GitHub repository</a></li>\n\n\n\n<li>Blog post by Jason Adams: <a href=\"https://givewp.com/join-us-to-build-the-next-generation-of-wordpress-donation-forms/\">Join Us to Build the Next Generation of WordPress Donation Forms</a></li>\n\n\n\n<li><a href=\"https://github.com/Automattic/isolated-block-editor\">Isolated Block Editor </a>(GitHub)</li>\n</ul>\n\n\n\n<p class=\"has-large-font-size\"><strong>Transcript: </strong></p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So welcome to our 34th Gutenberg Times Live Q&amp;A. My name is Birgit Pauli-Haack, and I&#8217;m your host and the publisher of the Gutenberg Times. Thank you all for attending the show and it&#8217;s so great to have you. So today as announced, we will discuss how a product company can leverage WordPress built in Gutenberg architecture to take plugin development to new levels.</p>\n\n\n\n<p>The team of GiveWP went all in on the approach and discovered new ways to build the new version of GiveWP Plugin. And we have the pleasure to meet two members of the technical team on the show and hear the genesis of the path and you can ask them questions. Before I introduce a panel, a few housekeeping notes. Speaking of questions, for those watching on YouTube, you can use the chat box next to the livestream and pose your questions and also chat with us or include where you&#8217;re watching from.</p>\n\n\n\n<p>I might not go over that very often, but we&#8217;ll definitely will look through the questions. And then here on Zoom, use the Q&amp;A bubble on the bottom of the screen or the jet bubble to share your thoughts and questions. Please be kind even if you disagree. This is a family friendly endeavor. If you might be wondering or your internet connection is not stable or you don&#8217;t have the time to sit through all of it, the recording will be available on YouTube later today after it&#8217;s fully rendered. Then the summary posts will be shared with the shared resources, will be on the Gutenberg Times within the next couple of weeks.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-strong-introduction-strong\">Introduction</h2>\n\n\n\n<p>So allow me to introduce our panel for today. Say hello, and let us know where you&#8217;re located tonight. I have the feeling that between the panel and the attendees, we span quite a bit of the globe. So I present to you, Jason Adams, director of development of GiveWP.</p>\n\n\n\n<p><em>Jason Adams</em>: Hi, I&#8217;m Jason. It&#8217;s good to meet y&#8217;all. I am from sunny San Diego, California.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. Yeah. I&#8217;ll also present to you Jon Waldstein, the lead developer of GiveWP, and it&#8217;s all his fault. Oh, sorry. And then last but not least, my co-host, Lena Morita, who is a JavaScript developer and core contributor to the Gutenberg components and sponsored by Automattic. Hi, Lena.</p>\n\n\n\n<p><em>Lena Morita</em>: Hi, I&#8217;m Lena. I am based in Tokyo, Japan. It&#8217;s 2:00 AM right now.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: All right. So good morning, Lena. Good morning, everybody else? Yeah, Jason and Jon, yeah, are both on the West Coast.</p>\n\n\n\n<p><em>Jon Waldstein</em>: I&#8217;m on the East Coast, Rhode Island.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: East Coast, yeah. Rhode Island. Yes, sorry.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Happy to be here.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, geography can be always a bit tricky for me.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-strong-give-wp-plugin-architecture-strong\">Plugin architecture</h2>\n\n\n\n<p>So let&#8217;s start at the beginning. Jason and I met at the post status get together at WordCamp US last year and you just had announced, GiveWP just had announced the start of the revamp of the GiveWP plugin, version 3.0. Widely distributed plugin for nonprofits and others to collect donations on website with various add-ons. Then you mentioned that you are building the new version on top of Gutenberg components and WordPress scripts and I found that fascinating. So before we dive in head first, let&#8217;s get everyone on the same plate. In short, Jason, what is GiveWP?</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah, so GiveWP number one donation plugin for WordPress. We have coming up on about 200,000 folks that use GiveWP to connect donations directly from their website, manage their donors and keep their nonprofits, which is largely our audience, running. Doing their day-to-day thing and not having to work too hard to bring in donations on there to keep their work going.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Awesome. Yeah, GiveWP, I used it quite a bit when I was working for the agency, but what made you rethink the current architecture of your plugin?</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah, so first Give still works very much kind of, you remember the classic editor experience of WordPress where it was it kind of data entry, right? You didn&#8217;t design or build your pages, you entered data about your pages, the content and tags and all this other stuff, and then you click publish and then you view on the front end, what did I get? We know that that worked great for decades, but now we&#8217;re moving more to a visual era of building things. People want to be able to visualize and have that kind of full more immersed experience. That was our motivator, was wanting to go down that route. We had a lot of ideas for how we wanted to do that, but we had technical debt building as all products do that was making it more and more difficult to go down that path. Yeah, we started to weigh our options of how are we going to go about taking GiveWP to the next level.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Interesting. Yeah, the drag and drop, the visual editing, I think that&#8217;s kind of really where Gutenberg shines and having a plugin follow that path. How did you figure out the path forward? Because a revamp normally is really a big project and it&#8217;s a multi-year development project, so how did you go about it?</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah, and we didn&#8217;t want to do a start from scratch kind of a thing. We wanted to iteratively build it out. So what&#8217;s been nice is that our underlying architecture for donations, donors, none of that&#8217;s changing. It&#8217;s just our forms. We first explored four years ago just building something proprietary and the reality was, it was not up to the standard that you see in Gutenberg and other sorts of things today. It&#8217;s a lot of work. It&#8217;s so easy to take for granted just the idea of a block, a thing that you can move up and down. It&#8217;s a fluid user interface, inner blocks, blocks inside a block. There&#8217;s so many things that are easy to take for granted when you go to set out to build something like this. We were like, &#8220;Well, it&#8217;s right there in Gutenberg.&#8221; And so we started to kind of peel it back and we knew that Gutenberg is not&#8230; Gutenberg is in WordPress, WordPress isn&#8217;t Gutenberg. You can go to the Gutenberg repository and it&#8217;s broken out into tons of packages.</p>\n\n\n\n<p>We just started installing stuff and we did what we call spiking, where we&#8217;re just trying out an idea for a fixed length of time. I think we gave one of our developers, might have been Jon or our other senior developer on the project, shout out to him, Kyle Johnson, one of them had a week to see what they could do. We were really surprised how much we were able to get up and running. Have the list view of blocks, have the block editor itself, have our own blocks loading, the inspector.</p>\n\n\n\n<p>It&#8217;s like you have so much that you can get up and running in such a short time that would&#8217;ve taken us months to achieve and it&#8217;s already so battle tested all of these packages. It&#8217;s hard to appreciate how much that&#8217;s worth by itself. Of course this is where WordPress is going. We didn&#8217;t want to have to reimagine an entirely new user experience and then train our users on how to use that. We wanted somebody to be able to go from working on a page or a post to a form and not have to relearn the whole journey, but to be like, this feels immediately familiar. It&#8217;s a little different, but it feels inherently familiar. Reducing that user friction from changing from context to context within WordPress, which I think is really important.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes, it sounds right, a good path, but there are definitely some hurdles. So what were the first wins that you kind of say when your developer kind of set out, get a week, and then what was it exactly that they set out to do, but then found, &#8220;Oh, that is going to be fast to develop that in a week.&#8221; Normally development takes about four weeks or five weeks or something like that. Yeah. What are your first wins?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"4-strong-give-wp-plugin-revamp-strong\">Plugin revamp</h2>\n\n\n\n<p><em>Jason Adams</em>: Like I said, even the concept of a block, because for us, we have, and I&#8217;ll demo this in a moment here, but we have our sections and then our fields go in our sections, like name amount. To just have everything visually there and to have, &#8220;I want this field to be down there,&#8221; and making that as fluid user experience is not as easy as it sounds. Or we also have sections and fields inside of sections. So this inner block concept and then being able to select which blocks are visible based on what context you&#8217;re in. Or I click on a block and that block contextually shows up in the inspector. We achieved all of that within a week and I was like, &#8220;We have a lot of work to do.&#8221; But just the fact that we could get that far in such a short amount of time, those were the wins that were like, &#8220;Well, we don&#8217;t want to go reinvent this,&#8221; and it already is a familiar user experience, so it would be silly not to do this in short.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So I think that I find it fascinating and when you tried to describe it, I think it would be really helpful for us to have a short demo of the current state of your development so we can actually look at things and then I can see that we might have the first round of audience questions. What will you show us tonight?</p>\n\n\n\n<p><em>Jason Adams</em>: All right, let&#8217;s share my screen and show some stuff. All right. Can y&#8217;all see my screen?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes, now we can.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"5-strong-give-wp-demo-strong\">Demo</h2>\n\n\n\n<p><em>Jason Adams</em>: All right, cool. So this is GiveWP very similar to how it is now, but I have a plugin, what we&#8217;re calling our feature plugin right now installed, called NextGen that anybody can actually go test out themselves. We have a landing page for this that we can share the link for that you can just go click spin up a site and it will just spin you up a site and you can be playing with it literally in 15 seconds.</p>\n\n\n\n<p><em>Lena Morita</em>: I tried this and it was really easy.</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah, thank you. So let&#8217;s see here. So I&#8217;ll add a new V3 form as we&#8217;re calling it. I won&#8217;t get into why it&#8217;s V3, but it is. So here you go. It&#8217;s funny, when we first showed this to people, it almost had an anticlimactic effect to it where they were like, &#8220;Well, what else would it look like?&#8221; Because it just fits right within WordPress. It&#8217;s like, &#8220;Oh, okay.&#8221; So you can see we&#8217;ve got the list view like you would normally have. We have our various sections, you can see everything within those sections. We&#8217;ve got the form itself. So a lot of this is very similar. Now you don&#8217;t have the fluid typing interface where you can just add paragraphs and paragraphs. You can&#8217;t just click somewhere and start typing. But that&#8217;s really neat is that you&#8217;re able to constrain how the block editor works, because for us, we don&#8217;t want people just typing in the forms. It doesn&#8217;t make sense for a form.</p>\n\n\n\n<p>Instead, people want to do something, like add a text field, and so we can just click on a section and we can add a text field, favorite color, we can mark it required. So I mean, as you see, it&#8217;s just Gutenberg. It&#8217;s the exact experience somebody would normally expect, but it&#8217;s tailored to how our forms work. And for us, we also wanted to do things like, if I come down here, I can only add a section. We wanted all fields to be within sections. So that&#8217;s a really subtle thing, that&#8217;s really powerful actually, because this is root level blocks here, and a root level block can only be a section. But then when I&#8217;m in a section and I want to add fields, well now Gutenberg knows what blocks can go in there and that&#8217;s not something we had to build. Gutenberg already has a concept of all of that kind of stuff.</p>\n\n\n\n<p>So I can come in here, you can click in and you can have that same&#8230; Gutenberg comes with a lot of what they call controls out of the box. So things like, I want to have inline text editing or something like that. That&#8217;s not something that you have to build. One other thing that I&#8217;ll point out here, is that if I go to add our blocks here, you can see that you have only our blocks. So we didn&#8217;t want to open up the form to every block that exists in WordPress. We thought about that, but we had very specific reasons why we didn&#8217;t. That&#8217;s another thing that&#8217;s really neat, is you can think of Gutenberg as creating your own sandbox environment for what you want to build. So you don&#8217;t have to think to yourselves like, &#8220;Oh my goodness, we have to&#8230;&#8221; So every block is open to this? No, you can make it limited to only your own fixed list of blocks.</p>\n\n\n\n<p>The other thing that is really neat that we&#8217;re able to do is add an additional tab over here that we call design. So this is breaking out a bit from what Gutenberg natively does. We wanted folks to have the ability to, in this view, we call it the builder view, which is where you&#8217;re focusing on the structure of your form. So it&#8217;s kind of a very vanilla, very plain looking, it&#8217;s just meant to be very clear. You can see with our donation summary here, it&#8217;s not really showing you anything real. It&#8217;s purely so that you can do things like I just want to position things where I want to have them in my form. So then you can switch over to the design tab and now we can actually view our form and this is the exact form as it&#8217;s going to render in the front end, and you can play around with secondary colors.</p>\n\n\n\n<p>So my secondary color in this form design is being used here. I can make this a nice little purple color, I can change the header, I can hide it, show it. You can do all sorts of fun things in here. But I mean that was pretty powerful of just the ability to add an entirely new type of experience within Gutenberg and giving people the ability to preview. For us, because Give forms are fairly widgety, right? We&#8217;re not trying to preview the entire page, just one thing, it worked out really nicely to be able to do it right within here.</p>\n\n\n\n<p>I&#8217;m trying to think what else. So the last thing that I&#8217;ll point out here, let me publish this. Let&#8217;s go to our form. Let&#8217;s take a look at it on the front end. Okay, so we&#8217;ve got our form here on the front end. I&#8217;m going to dive deep into the weeds here, it&#8217;s a dev audience, so just track with me. Okay, so typically when you&#8217;re working in Gutenberg, the way that we typically think of it saving is it saves as a string version to the post content. So you think of the Gutenberg HTML comments where it includes attributes and stuff about the block. You can load it dynamically and so on and so forth, but it saves to the post content column of the database. Then when you&#8217;re rendering the page, you grab that post content and you stick it on your page.</p>\n\n\n\n<p>Now for us, we didn&#8217;t want to just do that. We had to do a heck of a lot more. So if I fill this out, green for anybody who&#8217;s wondering. Then let&#8217;s throw on our test card, let&#8217;s say for five, donate. So I just made a real donation to my Stripe account. So a lot just happened there. That was obviously a lot more than just, &#8220;Oh, it looks like a form.&#8221; No, it has to actually work like a form. Forms submit data, forms store data. You can see here it&#8217;s referring to my favorite color that was stored in the donation meta. So has a lot that it needs to actually do and validate and all of this different stuff. What we did differently, is that when our forms save, so coming back here, so when I click update, it&#8217;s actually saving as JSON.</p>\n\n\n\n<p>So before Gutenberg turns into the big string that we know it to be, that saved content, it actually first stores as a JSON object. A bunch of blocks, block attributes, and then child blocks and so on and so forth. It&#8217;s a very simple structure actually. We&#8217;re doing nothing with the string content, we&#8217;re using just that JSON, and we built what we&#8217;re calling our field API and we&#8217;re converting the JSON structure into the field API. So this email address field, here it&#8217;s a block and then it gets converted into an email field on the front end, which is meaningful within GiveWP. So in other words, this is purely presentational so to speak and structural and we can convert it in any context we want. That&#8217;s a really powerful thing when you think about it, that you can take something like this, structurally speaking, and just convert it into your own API. So the block JSON, it&#8217;s focused on how is this all laid out within Gutenberg.</p>\n\n\n\n<p>When we load this page, literally all we&#8217;re doing is we&#8217;re grabbing that JSON that we save and we&#8217;re handing it back to Gutenberg and we say, &#8220;Here&#8217;s the form,&#8221; and that&#8217;s it. It just works. Then when we go to save it, we do the conversion and you can actually see that at play. If I just add another text field here, maybe. If I go to design, like that&#8217;s showing up here, because just as we&#8217;re working within, so even though I didn&#8217;t save it, that&#8217;s the kind of thing I&#8217;m showing there. Even though we didn&#8217;t save it, we&#8217;re still just grabbing that JSON object and converting it to our field API and rendering it that way.</p>\n\n\n\n<p>So I think for a lot of plugin developers and whatnot, I really want them to grasp the concept of Gutenberg is not just a way of being able to lay things out and then you just have to take whatever it gives you and slap it on the page and there you go. It&#8217;s like, no, you can use it as a tool for interacting with your user and then you can convert it into whatever context you can imagine. And that&#8217;s a pretty powerful thing.</p>\n\n\n\n<p>I think that&#8217;s it for what I had in mind for demo. Anything that anybody wants me to show a little more or poke into here?</p>\n\n\n\n<p><em>Lena Morita</em>: I have a question. So on the front end, on the actual front end form, how are you adding interactivity? Like the JavaScript parts?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"6-strong-adding-interactivity-how-a-form-works-strong\">Adding interactivity &#8211; how a form works</h2>\n\n\n\n<p><em>Jason Adams</em>: Yeah, so the way this works is that, so it takes the Gutenberg JSON, converts it into the field API, and then that is serialized and this is an iframe. Inside the iframe is a React application that&#8217;s just running independently. The React application takes in the form and then it connects to things like gateways, other add add-ons, that sort of a thing. But yeah, that&#8217;s where it&#8217;s coming from. This is just a React application of our own design, built specifically for Give forms.</p>\n\n\n\n<p><em>Lena Morita</em>: So basically field API converts all that JSON data into actual React components and stuff?</p>\n\n\n\n<p><em>Jason Adams</em>: The field API is a PHP layer.</p>\n\n\n\n<p><em>Lena Morita</em>: Oh.</p>\n\n\n\n<p><em>Jason Adams</em>: It&#8217;s pure just PHP objects, but it&#8217;s focused. Whereas the Gutenberg API is focused on blocks and child blocks, attributes, that sort of thing. Our field API is focused on how does a form work. So for example, is this a field? Is this field required? What are the validation rules for this field? Does it have any sanitization that needs to happen? So things that you would typically think about from a field or field form perspective, that&#8217;s what the field API thinks about.</p>\n\n\n\n<p>It was also really important to us that developers could programmatically&#8230; So if I want to programmatically move a field, add a field, add a section, do anything, you can do it using our field API in PHP. So you can kind of add a middleman layer between Gutenberg, a programmatic layer to be able to make more adjustments to your form. Then that&#8217;ll just show up here. For example, when I submitted this form down here, how does it know that this is a required field and what does that even mean, right? Because it has to validate on the other side. So when we submit this form on the server, it&#8217;s grabbing the form again in the structure of the field API, it&#8217;s finding the favorite color field, and then it&#8217;s checking the validation rules such as, &#8220;Hey, this is required,&#8221; or &#8220;It can only be up to 255 characters,&#8221; or whatever else. Does that make sense?</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah. So wait, the initial render of this form is not in PHP, I think you said this was initially rendered in React, or is it actually a PHP rendered page?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"7-strong-rendering-strong\">Rendering</h2>\n\n\n\n<p><em>Jason Adams</em>: I know there&#8217;s so many layers.</p>\n\n\n\n<p><em>Lena Morita</em>: It&#8217;s so interesting.</p>\n\n\n\n<p><em>Jason Adams</em>: It&#8217;s no worries. The field API lives in memory and PHP. That can be used both for rendering a form or validating a form or doing any number of things. This form represented in memory and PHP and it knows all the responsibilities of that form. Then we say, &#8220;Hey, I want to render that. That&#8217;s what I want to do this time.&#8221; And so then what it does is it, I think it&#8217;ll show you, it serializes everything. I thought it would show here. That&#8217;s fine. But anyway, it takes the whole field API structure, the form, all of its internal fields, elements and so on and so forth, serializes that, passes that to the front end, which is received by a React application.</p>\n\n\n\n<p><em>Lena Morita</em>: Oh, that&#8217;s how you hydrate it.</p>\n\n\n\n<p><em>Jason Adams</em>: Exactly. Yep. The React application is ready to receive a form in the structure of the field API JSON.</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah, I&#8217;m not sure if everybody&#8217;s aware, but the interactivity API is kind of an experimental phase in Gutenberg right now. And this is a very hot topic. I feel like it&#8217;s on everybody&#8217;s minds. How do we hydrate interactive components on the front end? So it&#8217;s very intriguing how people have done this before any kind of ready-made abstraction layer.</p>\n\n\n\n<p><em>Jason Adams</em>: Right. There&#8217;s also the difference between, for example, I&#8217;m making a page, on my page I&#8217;m adding a component. This component is an accordion. It&#8217;s presentational, but there is a JavaScript element to it of, I want to be able to make interactivity happen on a presentational level versus what I&#8217;m describing here. It&#8217;s pretty complex, because there&#8217;s both a front end validation and server side validation, and we want them to be the same. There&#8217;s a lot of complexity around a form and what the form even does. So for us, our forms don&#8217;t just save and entry, our forms actually output into a donation and donor. So trying to capture the lightning in a bottle of boiling this down to interactivities, it&#8217;s like, well, it&#8217;s doing a lot more than just being interactive. It&#8217;s also validating and doing a whole bunch of other stuff.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"8-strong-validation-strong\">Validation</h2>\n\n\n\n<p>Actually, one thing I&#8217;ll show here if I switch to our multi-step design, so let&#8217;s just update this. Okay, we&#8217;ve got a completely different experience here. So now in this one, every single step, so when I do that, you notice there it kind of loaded for a moment in between steps? It&#8217;s validating with the server. So every single step is now validated against the server to make sure that everything here is in fact correct.</p>\n\n\n\n<p>Well, actually I have that differently set. Anyway, so if I were to try to continue, I&#8217;m going to get immediate validation feedback from the server. Even if you try to trick the JavaScript and make it not work and validate in the front end, it&#8217;s still going to validate on the server. So yeah, it&#8217;s a complex piece. So I think the interactivity API and stuff like that is really, really great for a lot of simpler forms of interactivity. But when you&#8217;re building what is in effect a small application, I think something like that is still a ways away from covering everything that we need this to do. Does that make sense?</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah, it makes a lot of sense. Thank you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Totally sense for me too. Especially the other pieces, not only the validation of the form, but it&#8217;s also the connection with the external services like Stripe and the databases and all of that. Those need to be abstracted too and then kind of come back through the server API I would think, to then push it again to the front end in some other places.</p>\n\n\n\n<p><em>Jason Adams</em>: Exactly, because we don&#8217;t have a fixed list of gateways here. That&#8217;s injected. We also have our own add-ons, like fee recovery, form field manager, those add additional blocks and fields and those are injected at different points. It&#8217;s a highly customizable system, so there&#8217;s a lot going on.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Super. Yeah. Well, do you have any other questions, Lena, to get them to show you something or shall we talk a little bit higher level now?</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah, we can go higher level.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, thank you so much, Jason, for the demo. It&#8217;s fascinating, especially how the difference between before and now, because I only know the current version or the version three years ago and what you do now. So it&#8217;s a total different beast, I would say, as complexity, but also easy to use.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"9-strong-how-its-built-strong\">How it’s built</h2>\n\n\n\n<p>So just a ballpark, would you say from the code base, how much is actually based on the WordPress components and scripts and how much of that app do you have to rebuild kind of thing? So I would think the field API on PHP, that&#8217;s kind of the interface between those two as we saw.</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Maybe it&#8217;s kind of an odd question. Yeah, I get that.</p>\n\n\n\n<p><em>Jason Adams</em>: Twenty-five percent. I mean a lot. Gutenberg definitely attributes to quite a bit.</p>\n\n\n\n<p><em>Jon Waldstein</em>: I could take that one.</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah, go for it, Jon.</p>\n\n\n\n<p><em>Jon Waldstein</em>: We built the donation form, the new one that you were seeing on the front end, completely from scratch. That whole thing with React serializing or hydrating data from the server, we did that from scratch, because our old forms were just using post types. So everything is server rendered, and it&#8217;s a little difficult to add that level of interactivity with React using the old system. So we really built it, the front end, from the ground up. The form builder that Jason was demoing is mostly things you can get from the Gutenberg package. We had to customize a couple things that we had to fork and call our own, mainly the sidebar that you saw where we have that design tab, that&#8217;s not something that&#8217;s available to us. So we had to create that and implement it on our own. But for the most part, what you&#8217;re seeing on the form builder can be achieved from Gutenberg packages.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So the sidebar, when you say that, I saw the controls that were there, they looked like Gutenberg components, the color, bigger, and the different kind of&#8230; Yeah. So that definitely might have come through that. Yeah.</p>\n\n\n\n<p><em>Jason Adams</em>: We barely invented anything in the inspector.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah, and that&#8217;s the beautiful thing about using Gutenberg is if you want to create a block in our form builder, there&#8217;s nothing different about it than building a WordPress Gutenberg block. And we really wanted to make sure that was the case so that there&#8217;s nothing, no crazy documentation that you have to relearn. So we do have a community of developers that interact with GiveWP, external developers, and we want to preserve the customization of the plugin. So if you know how to build a block in WordPress, you&#8217;re going to know how to build a block for us as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, that&#8217;s awesome. Yeah. Well, this is all talking about the good sides, but were there any surprises or challenges that you encountered while you were building that, or are you still encountering? What are the biggest surprises that you&#8217;ve found?</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"10-strong-give-wp-challenges-strong\">Challenges</h2>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah. Well, we mentioned we had to customize some components like the sidebar. But I think the one I want to mention is GiveWP is not just one plugin. We have a lot of add-ons that extend the functionality of GiveWP, whether it be gateways and different ways to customize your form. We have a lot of things that interact with our main plugin. One of the bigger challenges recently was figuring out how to open up our customized Gutenberg form builder with our add-ons. Now, another shout out to Kyle Johnson, who is a developer on our team who built the first iteration of the form builder. To get things up and running we used just React, Create React App, which ends up bundling all the scripts together into one JavaScript file. So when you load the form builder, you&#8217;re just loading a page and it&#8217;s just loading that one JavaScript file.</p>\n\n\n\n<p>What we found out later is that in order to load external blocks from our add-ons and other things that are interacting with the form builder, all of these different things are always reacting with certain dependencies like React. They can&#8217;t all load Gutenberg at the same time. It&#8217;s just not going to work, which is how the post editor works and why WordPress Scripts package came out is that you can extract all the dependencies from your script and let WordPress load those for you. So that was a big kind of structural change we had to make so that we are now relying on WordPress to provide us with Gutenberg, which is actually something we didn&#8217;t want to do. We wanted to have full access to the latest version of Gutenberg, but it wasn&#8217;t possible for us, because we have add-ons that also need to interact with Gutenberg and React, and they can&#8217;t all just be loading their scripts at the same time. It&#8217;s just not going to work.</p>\n\n\n\n<p>Like most of us know, wp_enqueue_scripts, you add an array of dependencies that you want your script to use, and WordPress will load those for you. And that&#8217;s how we had to go about loading our form builder and then having add-ons come in and give us a block or give us something to customize the form builder and just let WordPress handle loading external scripts. That was the big one.</p>\n\n\n\n<p><em>Jason Adams</em>: I&#8217;ll add to that.</p>\n\n\n\n<p><em>Lena Morita</em>: I&#8217;m curious.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"11-strong-incorporating-react-strong\">Incorporating ReactJS</h2>\n\n\n\n<p><em>Jason Adams</em>: It&#8217;s easy to take for granted that the Gutenberg team had to tackle this issue of we&#8217;re creating a single React tree. We don&#8217;t want everybody to load their own version of React, and it has to all end up in the same place. So I remember when Gutenberg first came out and there&#8217;s the Gutenberg elements, they tucked React inside of Gutenberg, why&#8217;d they do that? And why did they come out with WP-Scripts that just swaps out for you&#8217;re doing at WordPress/components? What actually that does, is it grab it from WP.components. It&#8217;s like why is it doing all this? Well, the reality is, they went through all of the hard work of figuring out how to have everybody using the same version of React and loading everything to the same React tree all at the same time from 1,000 different places.</p>\n\n\n\n<p>That&#8217;s actually a lot harder than it sounds. Once we ran into that, we were like, &#8220;Okay.&#8221; We just had to switch everything to using WP-Scripts, because we&#8217;re like, &#8220;It&#8217;s just not worth it for us to try to solve the same problem of extensibility that Gutenberg itself has already solved so well.&#8221; It has some trade-offs, but it really, as a whole, it actually works quite well. So huge shout out to the Gutenberg team, because originally we actually had the first version of this loading in GitHub pages. It was literally totally standalone, but then we tried to extend it and we&#8217;re like, &#8220;This is a lot harder than we thought it would be.&#8221; Yeah.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"12-strong-trade-offs-and-compatibility-strong\">Trade-offs and compatibility</h2>\n\n\n\n<p><em>Lena Morita</em>: So speaking of trade-offs, I&#8217;m also sympathetic with the major downside of this. As a plug-in developer, you cannot rely on any version being in action at any moment. It&#8217;s very hard. Upstream changes can break your app at any moment. You don&#8217;t know what versions running. What are some things you&#8217;re doing to mitigate this risk I guess?</p>\n\n\n\n<p><em>Jon Waldstein</em>: We have to manually test it now. Before, if we were loading the latest version of Gutenberg, well, there&#8217;s only one instance of that. But since we&#8217;re loading Gutenberg from WordPress now, we actually had to bump up our minimum version of WordPress to whatever the version of Gutenberg that we support that comes with WordPress. That&#8217;s a major change for us, but it&#8217;s necessary.</p>\n\n\n\n<p><em>Jason Adams</em>: We previously supported back to WordPress 5.0. So this whole thing actually made us come up with an entirely new policy around which versions of WordPress do we support. Before it was like we would support a version of WordPress until we were like, &#8220;I guess there&#8217;s something that we really need,&#8221; then we would bump it up to&#8230; We were talking about bumping it up to 5.5 or something like that, but we saw no reason to cut backwards compatibility until we had a specific reason to do so. This whole thing made us realize like, &#8220;Oh, we&#8217;re really tightly coupled now.&#8221; We&#8217;re really on the WordPress bandwagon and it&#8217;s really important what versions we support.</p>\n\n\n\n<p>We didn&#8217;t invent this, other plugins are doing this, but we said, &#8220;Okay, we&#8217;re only going to officially, moving forward, support the latest released version of WordPress and the previous two.&#8221; That&#8217;s how we&#8217;re going to keep ourselves from getting into compatibility hell as new changes roll in that we have to become compatible for. Then that makes it harder and harder to be compatible with older versions. So we&#8217;re having to really kind of tighten in on that window. Fortunately, I will say, according to our telemetry, people are actually pretty darn good at staying within the latest or a few most late recent latest versions of WordPress. We don&#8217;t have a lot.</p>\n\n\n\n<p><em>Lena Morita</em>: That&#8217;s good to know.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"13-strong-support-team-strong\">Support team</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I was thinking so, what is your customer servicing to that? Yeah, because I can see that there are quite a few nonprofits that have not updated their WordPress for a while. But they could stay on your older version of GiveWP because it&#8217;s still supported, and you&#8217;re not going to cut it out right there.</p>\n\n\n\n<p><em>Jason Adams</em>: So a good product question there. So our support team is actually very much in support of it. What we&#8217;ve found is that typically people fall into one of two camps. One, they&#8217;re set it and forget it. They set up their website five years ago, and it works, so don&#8217;t touch it, right? And that&#8217;s perfectly fine. Or you have people that keep things fairly up to date. You don&#8217;t have many people that are in this weird middle space where they update some stuff and not others. And if somebody does reach out to our support team and is having an issue or something, our team is trained. One of the first things they do is they say, &#8220;Are you updated?&#8221; So it&#8217;s not like they&#8217;re going to have to suddenly change their tune, because of this new policy. It&#8217;s something we&#8217;ve already recommended to people for years is, if you&#8217;re having a problem, you should start by updating what you have to make sure that&#8230; because the problem might be fixed already and you&#8217;re just not updated.</p>\n\n\n\n<p>So yeah, we&#8217;re really not anticipating, and others like the events calendar and others have had this policy for a while, and so I did ask around within the product space, &#8220;Hey, was this a pain point for you? Did you notice a decrease in sales or higher churn rate?&#8221; The answer was unanimously, &#8220;No. No, actually, it&#8217;s a very healthy policy to have and it hasn&#8217;t caused us problems.&#8221;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So we have one more question from Anton, and I think it goes back quite a few minutes, he was asking about the sidebar if that is accomplished through slot fills.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"14-strong-sidebar-customization-isolated-block-editor-strong\">Sidebar customization &#8211; isolated Block Editor</h2>\n\n\n\n<p><em>Jon Waldstein</em>: That one, no, we actually had to fork that. But I wanted to bring up the isolated block editor, which Lena works on or has worked on, because we&#8217;ve been following that project for a little while now. I think at its inception we were also building ours, which our form builder is very similar to how the isolated block editor works. One of the biggest problems was the sidebar customization, which to answer Anton&#8217;s previous question, if you were to use isolated block editor now, you can accomplish that with technically a slot fill, because we submitted a feature request to do that, and it was actually added just recently.</p>\n\n\n\n<p>It makes it a little bit more feasible to actually switch over to the isolated block editor shortly, because we&#8217;re really not doing anything crazy. That was kind of the main thing about using WordPress as dependencies. It&#8217;s like we&#8217;re really not customizing anything that crazy. We&#8217;re just using Gutenberg. We&#8217;re not like forking every single thing. We&#8217;re loading a bunch of blocks into it and maybe doing some style changes. So it should be pretty reliable. But we are looking at the block editor, the isolated block editor, as a way forward for this. I would suggest it for anyone else looking at this project or looking at something similar to this, because it&#8217;s a really easy way to get started.</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah, I agree.</p>\n\n\n\n<p><em>Jason Adams</em>: Played around using it and realize like, oh, it has things like undo, redo. We don&#8217;t have that right now, but if you use the isolated block editor, you just have it. So yeah, part of our post 3.0 launch roadmap is to switch the isolated block editor, which will also take a lot of complexity off of our plate.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Excellent. So I have another question. I&#8217;m so happy that I&#8217;m privileged to run this show so I can ask all the questions that I want.</p>\n\n\n\n<p><em>Jason Adams</em>: Go for it.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"15-strong-making-it-easier-with-documentation-and-components-strong\">Making it easier with documentation and components</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You started kind of three, four years ago thinking about it and maybe a year and a half or two years ago, really doing proof of concepts and all that. So put yourself back into the shoes you would start out now, because that would be something that plugin developers might think about. What is it that you would ask of the Gutenberg team to improve or to build on the components or on the scripts so that work is a little easier? Or much easier, not just a little easier.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Documentation has been a little bit of a struggle for us, especially being like&#8230; And we understand we&#8217;re no experts at documentation. It&#8217;s tough work.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Can you specify a little bit on the documentation? Which piece?</p>\n\n\n\n<p><em>Jon Waldstein</em>: Well, if you know are going down the path of building your own block editor, there&#8217;s very little documentation on there. If there is, it&#8217;s a little outdated. We had to do a lot of digging through reading code and finding how to actually pull this thing off that didn&#8217;t quite match up with some of the documentation out there. So that was one of the biggest hurdles. Then also some components in Gutenberg are not accessible that we wanted to pull out and use ourselves. So some of those were just not exported. Maybe they&#8217;re just internal components. We found ourselves really wanting to, and we did use some of these components, but once we switched over to relying on WordPress to provide us the scripts, we lost some of those, because they&#8217;re not available. I would have to come up with a list to give you…</p>\n\n\n\n<p><em>Lena Morita</em>: With the block editor package? In the block editor package, you mean?</p>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah, block editor. Maybe some more. We would have to define the path to the actual build component to grab, and sometimes those were missing from the exports. We would often have to fork the whole file, which causes side effects, because it&#8217;s relying on some things. So limiting that was tough at first, but we kind of worked around it. I would&#8217;ve to come up with a list to figure out which ones are really important to people like us.</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah, please send me that list. I&#8217;m interested. There is something about it.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah. Some of these would be documented like, &#8220;Hey, they&#8217;re available,&#8221; and then you&#8217;d go to use them and they&#8217;re just not.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I know that Ryan Welchers is actually on the path to put example code into the read me files and all that, and he found quite a few that if you want to use that code snippet, you couldn&#8217;t, because it didn&#8217;t export. So he actually goes through it and while he is updating the documentation to also add the export feature to it. So I didn&#8217;t find it yet now quickly, that little issue or the tracking issue of that, but I can certainly share that with you and in the show notes and also with you personally, so you can add to the list so you don&#8217;t have to start from scratch. Have you, speaking of documentation, there&#8217;s also a separate documentation site that&#8217;s called The Storybook for the components. How did that help you?</p>\n\n\n\n<p><em>Jon Waldstein</em>: That was helpful. I&#8217;m not sure how complete it is or how up to date it actually is.</p>\n\n\n\n<p><em>Lena Morita</em>: It&#8217;s getting more complete by the minute.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah, there were some things on there that were very helpful.</p>\n\n\n\n<p><em>Lena Morita</em>: It&#8217;s really nice right now. We spent a lot of time on it this past year.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah, I love the idea of that. There&#8217;s different documentation sites. We&#8217;re not really sure which ones are up-to-date. So maybe add a version to what thing was added, that would be helpful.</p>\n\n\n\n<p><em>Jason Adams</em>: That&#8217;s a really important note, I think. If you go to some documentation sites out there, I think React does this or Stripe does this, where the docs themselves are versioned. That&#8217;s really helpful, because otherwise that&#8217;s been a part of our struggles. We&#8217;ll find some piece of documentation on Gutenberg and we&#8217;re like, &#8220;Is this old? Is this current?&#8221; We just don&#8217;t know how to trust it. So we always end up going back to the source code anyway to validate the documentation that we found to make sure that it is in fact still recent.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, totally get that. Especially because the documentation is actually built on top. The automation of the references is actually built on top of the Gutenberg plugin, but it doesn&#8217;t tell you that when you look at it. You are looking for something and you find it and then you try it out on WordPress without the plugin and the feature isn&#8217;t there yet, because it&#8217;s coming. It&#8217;s one of the upcoming kind of things. So I totally get this. Yeah.</p>\n\n\n\n<p><em>Lena Morita</em>: This is on our radar, definitely.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, absolutely. Yeah.</p>\n\n\n\n<p><em>Lena Morita</em>: We&#8217;ll try to push for this.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"16-strong-some-hard-codes-strong\">Some things are hard-coded</h2>\n\n\n\n<p><em>Jason Adams</em>: One other minor thing on the original question I&#8217;ll add is, there are still some things in Gutenberg that are hard coded that you can&#8217;t really do anything about. One that we&#8217;re kind of just hoping nobody notices is if you click on a block and then there&#8217;s little header piece of the block there and there&#8217;s a contextual menu and options that drops down where you have things like copy styles or paste styles or that sort of a thing, we can&#8217;t get rid of that. Copying and pasting styles makes no sense in our context. We looked into it. That&#8217;s just hard coded. You can&#8217;t get rid of that. It&#8217;s just there. I was like, &#8220;Oh.&#8221; So there are still little pieces like that that you&#8217;re just like, &#8220;Well, hopefully nobody will notice that.&#8221; And then the last thing with Gutenberg that we ran into that is like, &#8220;This is interesting,&#8221; is well, not the last, another is…</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: I&#8217;m sure it&#8217;s not the last, yeah.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"17-strong-locked-blocks-strong\">Locked blocks</h2>\n\n\n\n<p><em>Jason Adams</em>: &#8230; locked blocks. So that&#8217;s kind of an interesting concept where, for example, you have to have an amount field for us. You can&#8217;t take that out and still have your form work. So you can lock the block, but then they can go unlock the block. So locking something, it&#8217;s more like a pinky promise with the user, like please don&#8217;t get rid of this. I think it used to be that locking was like it was done. There was no way to unlock something, and then the UI was added in the list view to be able to unlock things. That was kind of an interesting one of like, &#8220;Oh, well, how do you actually enforce that something can&#8217;t be removed? You should not be able to delete this.&#8221;</p>\n\n\n\n<p>Then the other thing that we found that was interesting with locked blocks, is that if you have a locked block in one as a child block, so we have our two sections, if I have my amount block up here, when it&#8217;s locked, I can&#8217;t move it. So you can&#8217;t take it out of this section and move it into this section. If you drag and drop, it just will do nothing. So there&#8217;s just little itty-bitty things like that that kind of pop up. So the concept of what locked means in Gutenberg is a little bit, you kind of just got to play with it to find out what does lock even mean?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah.</p>\n\n\n\n<p><em>Jason Adams</em>: It&#8217;s not clear and consistent, I would say.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"18-strong-filters-and-blocks-strong\">Filters and blocks</h2>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Yeah. So in the last few versions of WordPress, there were server-side filters as well as client-side filters to customize your blocks and to curate the experience and switch off interfaces and all that through PHP filters or server side or JavaScript filters. Have you been able to mitigate some of the problems that you saw before?</p>\n\n\n\n<p><em>Jason Adams</em>: With the locked stuff that we talked about?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. So Nick Diego just posted on the developer blog a new&#8230; So how to modify theme.json data, which is kind of part of it. Yeah, that&#8217;s the style part, but it&#8217;s also block styling. Oh, I can share it here. Whoops.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Oh, I&#8217;ll mention one. I&#8217;ll shout out to one filter that we just found extremely useful is the JavaScript filters for registering a block type, which really was amazing because now we can have core blocks. Let&#8217;s take the amount field or something, and we can have an add-on come in and add more settings or attributes to that block using the register block type. There&#8217;s a couple other filters for doing that where you can add things to a block that wasn&#8217;t there before. That&#8217;s new to me that you could do that natively, but for us, that was huge.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s a little late in the game. Yeah. Yeah, I&#8217;m sorry, but we are getting to the end of our show. It was only scheduled for an hour. I think we could talk another two hours. I feel that way. And I don&#8217;t know, Lena probably has even more questions for you.</p>\n\n\n\n<p><em>Lena Morita</em>: Definitely. So many questions.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: But it was such a great experience to have you on the show and to share some of the secrets that you encountered and how you made it all work for yourself. We will have some resources in the show notes.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"19-strong-announcements-and-contact-info-strong\">Announcements and contact Info</h2>\n\n\n\n<p>At this point, I only have two more questions for you all three. So do you have any announcement that you wouldn&#8217;t get in before or you want people to keep in mind? We can go around Jason, Jon, and Lena. The second question is, if people want to get in touch with you, what would be the best way? So you can answer one of the questions, both questions or none.</p>\n\n\n\n<p><em>Jason Adams</em>: Yeah, so keep an eye out for Give 3.0 that will be landing at the beginning of Q3 is what we&#8217;re aiming for right now. You can go to the landing page, I provided the link for that and go spin it up and test it out yourself. We&#8217;re updating that. So as we roll out new internal versions of what we&#8217;re calling next gen, which is our 3.0, we&#8217;re updating that and we actually have it all set up. So if you do have that installed locally and we roll out a version, you can update it just like you would any other plugin and continue to test out, provide feedback. So we love getting feedback from folks on this. You can also reach out to me personally at <a href=\"mailto:jason.adams@givewp.com\">jason.adams@givewp.com</a>, or you can find me on Twitter as Jason.Adams.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Yeah. Thank you, Jon?</p>\n\n\n\n<p><em>Jon Waldstein</em>: Yeah, and I&#8217;ll mention for any other developers that are interested, what we&#8217;ve demoed and what we&#8217;re showing is completely public. You could go on GitHub and look at all of this code that we wrote. It took us over a year. I think we&#8217;re coming up on a year and a half or something, maybe a little less than that, but a lot of work has gone into it. If you want to see actually what we&#8217;re doing, come on to GitHub and if you want to ask some questions, you could start a discussion on GiveWP, or we have a Canny board for additional feedback. If you were to go to the landing page and actually play around with this thing, you can actually provide feedback and we&#8217;ll take all the feedback into consideration for the future of GiveWP. And if you want to get in touch with me, I&#8217;m on Twitter, Jon Waldstein and <a href=\"mailto:jon@givewp.com\">jon@givewp.com</a> if you want to send me an email.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. And Lena?</p>\n\n\n\n<p><em>Lena Morita</em>: Yeah, I guess for me, I mentioned I work on the work path components package and me and the team that works on it, we really, really are always looking for new contributors. So if anyone&#8217;s interested in contributing back, we love working with new contributors. We are highly engaging and we collaborate a lot. So if anybody&#8217;s interested, just pick up an issue or I don&#8217;t know, ping me and we&#8217;ll help you find a fun, good issue to work on. You can find me on Twitter at Mirka, M-I-R-K-A. Same ID on GitHub.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Excellent. Yeah. And so my link or my answer is that we will do another live Q&amp;A in two weeks actually, but on Friday, on Friday, July 21st. We&#8217;ll talk about design systems and theme.json. I know that there are large agencies and large entities like universities, and so they all have a design system. They have corporate design, and they need all the websites kind of to follow that. The WordPress VIPs team built a bridge between Figma and theme.json. I hope I get the people who created that on the show. We will have some demos there, of course. We also will talk with Joni Halabi, who is the web developer at Georgetown University, and she also has, as a university, big design systems and how she works with patterns. So it&#8217;s a great show and I hope you will join us again there.</p>\n\n\n\n<p>So a big thank you to our viewers and to Anton for the great questions. If you have more questions, you can always send them to me via email. That&#8217;s <a href=\"mailto:pauli@gutenbergtimes.com\">pauli@gutenbergtimes.com</a>. P-A-U-L-I at gutenbergtimes.com. Recording, as I mentioned, will be available in a few minutes on the YouTube channel, and we&#8217;ll publish a transcript in a couple of weeks on gutenbergtimes.com.&nbsp;</p>\n\n\n\n<p>Thanks again to Jason, Jon, and Lena for being here. It&#8217;s been a privilege to have you on the show, and it was a great joy talking to you. Be well and goodbye and good luck. Take care.</p>\n\n\n\n<p><em>Jason Adams</em>: Thank you.</p>\n\n\n\n<p><em>Lena Morita</em>: Thank you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Thank you.</p>\n\n\n\n<p><em>Jon Waldstein</em>: Bye.</p>\n\n\n\n<p><em>Lena Morita</em>: Bye.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Bye, everyone.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jul 2023 23:50:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"WPTavern: WordPress Contributors Demand Transparency and Objective Guidelines for Listings on Recommended Hosting Page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=147073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"https://wptavern.com/wordpress-contributors-demand-transparency-and-objective-guidelines-for-listings-on-recommended-hosting-page\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6958:\"<p>WordPress&#8217; <a href=\"https://wordpress.org/hosting/\">Recommended Hosting</a> page is a hotly contested piece of online real estate, and has recently come into focus again following the<a href=\"https://meta.trac.wordpress.org/changeset/12718\"> removal of SiteGround</a> from the listings. When the change was highlighted during a recent Meta team meeting, Audrey Capital-sponsored contributor Samuel &#8220;Otto&#8221; Wood <a href=\"https://wordpress.slack.com/archives/C02QB8GMM/p1689199290876499\">said</a>, &#8220;Matt asked me to remove SiteGround because that page is getting revamped. I know no more than that.&#8221; Bluehost and Dreamhost are the only two hosts remaining on the page at this time.</p>\n\n\n\n<p>The process for being listed on the Recommended Hosting page has historically been <a href=\"https://wptavern.com/the-recommended-hosting-page-on-wordpress-org-starts-over-from-scratch\">shrouded in secrecy</a>, causing contributors to speculate that large sums of money were required. Although the current criteria is posted on the page, the process of getting listed and de-listed is not transparent. It&#8217;s not clear if and how the criteria is being applied, as it states that listings are &#8220;completely arbitrary:&#8221;</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>We’ll be looking at this list several times a year, so keep an eye out for us re-opening the survey for hosts to submit themselves for inclusion. Listing is completely arbitrary, but includes criteria like: contributions to WordPress.org, size of customer base, ease of WP auto-install and auto-upgrades, avoiding GPL violations, design, tone, historical perception, using the correct logo, capitalizing WordPress correctly, not blaming us if you have a security issue, and up-to-date system software.</p>\n</blockquote>\n\n\n\n<p>WordPress co-creator Matt Mullenweg has recently hinted at the possibility of re-opening the survey, inviting contributors in WordPress&#8217; Hosting Slack channel to weigh in on questions or data the survey should collect &#8220;to help us discern who we recommend.&#8221; He linked to questions from the <a href=\"https://mcm.survey.fm/2023-wordpress-hosting-survey\">survey used in 2016</a> when the page was <a href=\"https://wptavern.com/the-wordpress-org-recommended-hosting-page-is-revamped-features-flywheel-for-the-first-time\">updated</a> to include Bluehost, DreamHost, Flywheel, and SiteGround.</p>\n\n\n\n<p>The new draft for the survey states: &#8220;It&#8217;s time to loop back and give every host an opportunity to be on the recommended page, and also make it international because we never really got recommended hosts in non-English countries right.&#8221;</p>\n\n\n\n<p>The WordPress Hosting team has been working on a related effort called &#8220;<a href=\"https://docs.google.com/document/d/1FhjFjY9I6gn6uqz4oBsHvYzxnrUg0RfAYuRhlLjdWec/edit\">Project Bedrock</a>&#8221; that aims to create a directory in which any hosting company that meets a series of predefined requirements can appear as recommended hosting or compatible with the WordPress CMS. </p>\n\n\n\n<p>&#8220;Yes, project bedrock is a goal,&#8221; Hosting team rep Javier Casares said. &#8220;Some months ago we left the project in stand-by to create a pre-version of the project, creating a list of hosting companies inside the Make/Hosting, a &#8216;everyone can be on the list&#8217; (if criteria) as a complement for the /hosting), but the idea is that /hosting, this pre-project or the project should have the same criteria (the base).</p>\n\n\n\n<p>&#8220;We know Matt is the responsible for the /hosting, our idea is creating a &#8216;longer list&#8217; for the Hosting Handbook / page at Make/hosting. The idea is having the same criteria. So, both are complementary.&#8221;</p>\n\n\n\n<p>Although contributors to the project view it as complementary to the official recommendations, it may be confusing for WordPress to have multiple similar hosting resources with the same criteria but different listings. These appear to be conflicting efforts that have a lot of overlap but may ultimately be at odds with the goal of simplifying the host selection process for new WordPress users who don&#8217;t know which ones to consider.</p>\n\n\n\n<p>Casares suggested a few technical criteria that the survey should focus on, including PHP versions, database versions, SSH access, automatic updates, one-click WordPress installation, free TLS certificates, backup, and more.</p>\n\n\n\n<p>The 2023 survey is still in the early stages in draft form. WordPress Hosting team contributors suggested that requirements for revamping the page would be a good topic for discussion at WordCamp US&#8217; upcoming Community Summit next month.</p>\n\n\n\n<p>In the Post Status hosting channel, Namecheap co-founder Matt Russell suggested Mullenweg leverage <a href=\"https://wphostingbenchmarks.com/\">WPHostingBenchmarks</a> performance data. </p>\n\n\n\n<p>&#8220;[WPHostingBenchmarks is] probably the most open, fairest, and long-term performance evaluation in the WP space,&#8221; Russell said. He also recommended Mullenweg revamp the page as more of a directory with options to select budget, regions/country, and more.</p>\n\n\n\n<p>Review Signal founder Kevin Ohashi, who publishes the WPHostingBenchmarks site, shared concerns about transparency that he has had since the last time the page was updated:</p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Who is reviewing this information? What criteria will be used in evaluating them? I know last time you said you were involved, as were other folks from Automattic. Automattic is a competitor in the hosting space, and no matter the hat being worn, there is some concern over sharing sensitive business info with a competitor.</p>\n\n\n\n<p>Getting listed on that page is likely worth millions of dollars to any company in terms of business generated. I think the process and criteria should be transparent and clear from the beginning. I also think who is involved with evaluating should be known beforehand as well. At least give companies, and consumers, the information they deserve to evaluate participating and the outcome.</p>\n</blockquote>\n\n\n\n<p>Ohashi recommends that no person employed by a hosting company should be involved in the evaluation of submissions. This would eliminate bias from competitors in the space trying to suppress those they deem to be a threat.</p>\n\n\n\n<p>&#8220;I&#8217;d like to see more ethics and accountability, a code of ethics for any company getting listed would be a positive in my mind,&#8221; Ohashi said. &#8220;Companies should be competing on quality and product, not on astroturfing, deceptive billing practices and other shady behavior we often see in the space. In my benchmarks, I push measuring default performance because I believe that benefits the greatest number of customers. I think there&#8217;s an opportunity to push for a better ecosystem here and would love to see you take it.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jul 2023 21:42:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WordPress.org blog: WordPress 6.3 Live Product Demo – Highlights &amp; Recording\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=15445\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://wordpress.org/news/2023/07/wordpress-6-3-live-product-demo-highlights-recording/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7537:\"<p>WordPress 6.3 ships on August 8th! For a sneak peek of what&#8217;s to come, members of the 6.3 release squad, <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> and <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a>, held a live demo moderated by <a href=\"https://profiles.wordpress.org/njwrigley/\">Nathan Wrigley</a>.&nbsp;</p>\n\n\n\n<p>More than 100 attendees watched as some of the most anticipated product features were demonstrated, from the brand-new Command Palette to new design tools and more.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>6.3 Live Product Demo\n\n\n\n<p>Here are some of the key takeaways from the 6.3 live product demonstration.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Command Palette’s big debut</h2>\n\n\n\n<p>One of the most anticipated features of 6.3 is the <a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Command Palette</a>. It lets you quickly navigate and open different WordPress functions within the post and Site Editor. Access it using a shortcut command (Command + K or Control + K).</p>\n\n\n\n<h2 class=\"wp-block-heading\">Page creation gets easier in the Site Editor</h2>\n\n\n\n<p>Now you can browse and edit pages within the Site Editor, providing a more cohesive WordPress experience. A new drafting flow debuts, allowing you to create and publish pages directly within the editor.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Synced Patterns set to replace Reusable Blocks</h2>\n\n\n\n<p>You can create and manage all your patterns directly in the Site Editor. Once edited, all synced patterns (previously called Reusable Blocks) will change across a site—a huge time saver when making changes.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Stay on top of design changes with Style Revisions</h2>\n\n\n\n<p>This enhancement offers a visual timeline of your site so you can see all the revisions in your site’s history and restore a previous style with just a click.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">New design tools and blocks</h2>\n\n\n\n<p>Controls for specifying aspect ratios to ensure design integrity, especially when using images in Patterns debut in 6.3, along with new blocks for Footnotes and Details. Easily add footnotes to your content and have them automatically linked to the corresponding text. With the Details block, hide or display content to create spoilers or accordions.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Performance</h2>\n\n\n\n<p>WordPress is getting faster with 6.3 as content with images will see speedier load times. Both theme types (Classic and Block) will also benefit from performance improvements. The upcoming <a href=\"https://make.wordpress.org/core/2023/06/29/hallway-hangout-performance-improvements-for-wordpress-6-3/\">hallway hangout</a> is an excellent opportunity to learn more about performance enhancements directly from the WordPress Performance team.</p>\n\n\n\n<h2 class=\"wp-block-heading\">More from Core</h2>\n\n\n\n<ul>\n<li>Revert to previously installed versions when <a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">manual updates for themes and plugins fail</a>.&nbsp;</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/05/dropping-support-for-php-5/\">Dropping support</a> for PHP 5. The new minimum supported version of PHP will be 7.0.0. The recommended version of PHP remains at 7.4 or greater.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">Accessibility updates</a>, especially for List View and the broader Site Editor experience.</li>\n\n\n\n<li>Improvements to internationalization <a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">just-in-time translation loading</a>.</li>\n</ul>\n\n\n\n<p>These new features and more await you as Phase 2 of the <a href=\"https://wordpress.org/about/roadmap/\">WordPress Roadmap</a> comes to a close with the 6.3 release.</p>\n\n\n\n<p>A <a href=\"https://make.wordpress.org/core/2023/07/21/6-3-live-product-demo-qa/\">question and answer session</a> followed the demo, with attendees asking plenty of great questions. The panelists shared links for additional reading regarding many new features—all conveniently added to the end of this post.&nbsp;</p>\n\n\n\n<p>A big thank you to everyone who helps make WordPress. Contributors power every WordPress release. Without the hundreds of contributors worldwide who help build WordPress, this live product demo wouldn’t have been possible. Thank you for all of your hard work.</p>\n\n\n\n<h2 class=\"wp-block-heading\">References from the Live Demo</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/07/17/introducing-the-wordpress-command-palette-api/\">Introducing the WordPress Command Palette API</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/core-editor-improvement-advancing-the-power-of-patterns/\">Core Editor Improvement: Advancing the Power of Patterns</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/documentation/article/comparing-patterns-template-parts-and-reusable-blocks/\">Comparing Patterns, Template Parts, and Reusable Blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/13/image-performance-enhancements-in-wordpress-6-3/\">Image performance enhancements in WordPress 6.3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/18/wordpress-6-3-field-guide/\">The 6.3 Field Guide</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/05/dropping-support-for-php-5/\">Dropping support for PHP 5</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/19/wordpress-6-3-accessibility-improvements/\">WordPress 6.3 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/i18n-improvements-in-6-3/\">Internationalization Improvements in 6.3</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/30496\">#30496 Site Editor: MVP Customizer Compatibility/Integration</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/52128\">#52128 Customization Ongoing Roadmap</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/building-sidebars-with-the-site-editor/\">Building sidebars with the Site Editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/11/new-in-6-3-rollback-for-failed-manual-plugin-and-theme-updates/\">New in 6.3: Rollback for failed manual plugin and theme updates</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/07/14/layout-updates-in-the-editor-for-wordpress-6-3/\">Layout updates in the editor for WordPress 6.3</a></li>\n</ul>\n\n\n\n<p>Props to <a href=\"https://profiles.wordpress.org/richtabor/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>richtabor</a> and <a href=\"https://profiles.wordpress.org/annezazu/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>annezazu</a> for reviewing this post and to <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>, <a href=\"https://profiles.wordpress.org/meher/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>meher</a>, and <a href=\"https://profiles.wordpress.org/dansoschin/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>dansoschin</a> for their logistics support to run the event.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jul 2023 19:26:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Do The Woo Community: The Friday Show, What Makes the Do the Woo Podcast Unique\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=75699\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://dothewoo.io/what-makes-do-the-woo-podcast-unique/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:417:\"<p>Do the Woo podcast has grown into a hybrid of a podcast, community and network. A podcast for the community, by the community.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/what-makes-do-the-woo-podcast-unique/\">The Friday Show, What Makes the Do the Woo Podcast Unique</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 21 Jul 2023 08:52:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 09 Aug 2023 16:48:19 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Wed, 09 Aug 2023 16:30:30 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 8\";}}s:5:\"build\";s:14:\"20230710121827\";}','no'),(528,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1691642900','no'),(529,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1691599700','no'),(530,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1691642900','no'),(531,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/08/lionel/\'>WordPress 6.3 “Lionel”</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/08/concerns-over-the-european-unions-cyber-resilience-act-cra/\'>Concerns over the European Union’s Cyber Resilience Act (CRA)</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://akismet.com/blog/how-to-disable-comments-in-wordpress/\'>Akismet: How to Disable Comments in WordPress (and When Not to)</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wordpress-6-3-lionel-introduces-command-palette-expands-pattern-management-and-design-tools\'>WPTavern: WordPress 6.3 “Lionel” Introduces Command Palette, Expands Pattern Management and Design Tools</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/08/lionel/\'>WordPress.org blog: WordPress 6.3 “Lionel”</a></li></ul></div>','no'),(536,'_transient_timeout_elementor_remote_info_api_data_3.15.2','1691685535','no'),(537,'_transient_elementor_remote_info_api_data_3.15.2','a:4:{s:9:\"timestamp\";s:10:\"1691640229\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"6.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(546,'elementor_1_elementor_updater_batch_cab23381789219bf16030f3a6a78','a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}}','no'),(547,'_elementor_global_css','a:7:{s:4:\"time\";i:1692802078;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'),(548,'_elementor_assets_data','a:1:{s:3:\"css\";a:1:{s:7:\"widgets\";a:21:{s:5:\"image\";a:2:{s:7:\"content\";s:269:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\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:6:\"3.21.8\";}s:6:\"button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:7:\"heading\";a:2:{s:7:\"content\";s:673:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\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:6:\"3.21.8\";}s:11:\"text-editor\";a:2:{s:7:\"content\";s:719:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;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:6:\"3.21.8\";}s:13:\"jkit_icon_box\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:9:\"icon-list\";a:2:{s:7:\"content\";s:124:\"<link rel=\"stylesheet\" href=\"https://health.ideascloud.in/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">\";s:7:\"version\";s:6:\"3.21.8\";}s:16:\"mf-listing-fname\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:16:\"mf-listing-lname\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:9:\"mf-number\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:8:\"mf-email\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:7:\"mf-text\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:9:\"mf-button\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:7:\"metform\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:18:\"elementskit-lottie\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:9:\"jkit_team\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:4:\"icon\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:12:\"jkit_heading\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:15:\"jkit_post_block\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:4:\"html\";a:2:{s:7:\"content\";s:0:\"\";s:7:\"version\";s:6:\"3.21.8\";}s:12:\"social-icons\";a:2:{s:7:\"content\";s:5051:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em));height:calc(var(--icon-size, 25px) + 2 * var(--icon-padding, .5em))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-threads{background-color:#000}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-x-twitter{background-color:#000}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>\";s:7:\"version\";s:6:\"3.21.8\";}s:7:\"divider\";a:2:{s:7:\"content\";s:4311:\"<style>/*! elementor - v3.21.0 - 26-05-2024 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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-block-end:0;flex-grow:1;border-block-start: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{flex-grow:0;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{flex-grow:0;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--element-align-start .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-start .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-start .elementor-divider__element{margin-inline-start:0}.elementor-widget-divider--element-align-end .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-end .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-end .elementor-divider__element{margin-inline-end:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-block-start: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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>\";s:7:\"version\";s:6:\"3.21.8\";}}}}','yes'),(665,'_transient_timeout_elementor_remote_info_api_data_3.18.2','1702714675','no'),(666,'_transient_elementor_remote_info_api_data_3.18.2','a:4:{s:9:\"timestamp\";s:10:\"1702671382\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(706,'_transient_timeout_elementor_remote_info_api_data_3.18.3','1706185162','no'),(707,'_transient_elementor_remote_info_api_data_3.18.3','a:4:{s:9:\"timestamp\";s:10:\"1706139396\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(725,'_transient_timeout_elementor_remote_info_api_data_3.19.0','1707154003','no'),(726,'_transient_elementor_remote_info_api_data_3.19.0','a:4:{s:9:\"timestamp\";s:10:\"1707107311\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(749,'_transient_timeout_elementor_remote_info_api_data_3.19.2','1708942425','no'),(750,'_transient_elementor_remote_info_api_data_3.19.2','a:4:{s:9:\"timestamp\";s:10:\"1708898680\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(754,'_transient_timeout_elementor_remote_info_api_data_3.19.3','1709107730','no'),(755,'_transient_elementor_remote_info_api_data_3.19.3','a:4:{s:9:\"timestamp\";s:10:\"1709062392\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(774,'_transient_timeout_elementor_remote_info_api_data_3.19.4','1709957057','no'),(775,'_transient_elementor_remote_info_api_data_3.19.4','a:4:{s:9:\"timestamp\";s:10:\"1709910575\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(784,'_transient_timeout_elementor_remote_info_api_data_3.20.1','1710483366','no'),(785,'_transient_elementor_remote_info_api_data_3.20.1','a:4:{s:9:\"timestamp\";s:10:\"1710438199\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(807,'_transient_timeout_elementor_remote_info_api_data_3.20.2','1711526835','no'),(808,'_transient_elementor_remote_info_api_data_3.20.2','a:4:{s:9:\"timestamp\";s:10:\"1711482380\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.4.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(836,'_transient_timeout_elementor_remote_info_api_data_3.20.3','1712772119','no'),(837,'_transient_elementor_remote_info_api_data_3.20.3','a:4:{s:9:\"timestamp\";s:10:\"1712728893\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(846,'_transient_timeout_elementor_remote_info_api_data_3.20.4','1713187659','no'),(847,'_transient_elementor_remote_info_api_data_3.20.4','a:4:{s:9:\"timestamp\";s:10:\"1713144254\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(860,'_transient_timeout_elementor_remote_info_api_data_3.21.1','1713952165','no'),(861,'_transient_elementor_remote_info_api_data_3.21.1','a:4:{s:9:\"timestamp\";s:10:\"1713907056\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(876,'_transient_timeout_elementor_remote_info_api_data_3.21.3','1714467136','no'),(877,'_transient_elementor_remote_info_api_data_3.21.3','a:4:{s:9:\"timestamp\";s:10:\"1714421155\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(883,'_transient_timeout_elementor_remote_info_api_data_3.21.4','1715158878','no'),(884,'_transient_elementor_remote_info_api_data_3.21.4','a:4:{s:9:\"timestamp\";s:10:\"1715114523\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(913,'_transient_timeout_elementor_remote_info_api_data_3.21.5','1716260245','no'),(914,'_transient_elementor_remote_info_api_data_3.21.5','a:4:{s:9:\"timestamp\";s:10:\"1716214115\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(921,'_transient_timeout_elementor_remote_info_api_data_3.21.6','1716396536','no'),(922,'_transient_elementor_remote_info_api_data_3.21.6','a:4:{s:9:\"timestamp\";s:10:\"1716350143\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(939,'_transient_timeout_elementor_remote_info_api_data_3.21.7','1716661699','no'),(940,'_transient_elementor_remote_info_api_data_3.21.7','a:4:{s:9:\"timestamp\";s:10:\"1716616600\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(959,'_transient_timeout_elementor_remote_info_api_data_3.21.8','1717833775','no'),(960,'_transient_elementor_remote_info_api_data_3.21.8','a:4:{s:9:\"timestamp\";s:10:\"1717788176\";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:75:{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:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i: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:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:5;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;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: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:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;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:15;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:16;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:17;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:18;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:19;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:20;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:21;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:22;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:23;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:25;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:26;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:27;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:28;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:29;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:30;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:31;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:32;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:33;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:34;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:35;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:36;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:37;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:38;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:39;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:40;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:41;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:42;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:43;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:44;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:45;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:46;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:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;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:59;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:60;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:61;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:62;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:63;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:64;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:65;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:66;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:67;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:68;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:69;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:70;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"6.5.4\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','no'),(984,'_site_transient_timeout_theme_roots','1719265279','no'),(985,'_site_transient_theme_roots','a:4:{s:15:\"hello-elementor\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(986,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.5.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.5.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.5.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.5.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.5.5\";s:7:\"version\";s:5:\"6.5.5\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1719263480;s:15:\"version_checked\";s:5:\"6.5.5\";s:12:\"translations\";a:0:{}}','no');
INSERT INTO `wp_options` VALUES (987,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1719263486;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:11:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.3.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:4:\"7.83\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.83.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=2990457\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=2990457\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";}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:6:\"3.22.2\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.22.2.zip\";s:5:\"icons\";a:2:{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=3005087\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3005087\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:51:\"header-footer-elementor/header-footer-elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:37:\"w.org/plugins/header-footer-elementor\";s:4:\"slug\";s:23:\"header-footer-elementor\";s:6:\"plugin\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:11:\"new_version\";s:6:\"1.6.36\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/header-footer-elementor/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/header-footer-elementor.1.6.36.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2813167\";s:3:\"svg\";s:68:\"https://ps.w.org/header-footer-elementor/assets/icon.svg?rev=2813167\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/header-footer-elementor/assets/banner-1544x500.jpg?rev=2813167\";s:2:\"1x\";s:78:\"https://ps.w.org/header-footer-elementor/assets/banner-772x250.jpg?rev=2813167\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.4\";}s:37:\"elementskit-lite/elementskit-lite.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/elementskit-lite\";s:4:\"slug\";s:16:\"elementskit-lite\";s:6:\"plugin\";s:37:\"elementskit-lite/elementskit-lite.php\";s:11:\"new_version\";s:5:\"3.2.0\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/elementskit-lite/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/elementskit-lite.3.2.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/elementskit-lite/assets/icon-256x256.gif?rev=2518175\";s:2:\"1x\";s:69:\"https://ps.w.org/elementskit-lite/assets/icon-128x128.gif?rev=2518175\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/elementskit-lite/assets/banner-1544x500.png?rev=2118488\";s:2:\"1x\";s:71:\"https://ps.w.org/elementskit-lite/assets/banner-772x250.png?rev=2118488\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:35:\"envato-elements/envato-elements.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/envato-elements\";s:4:\"slug\";s:15:\"envato-elements\";s:6:\"plugin\";s:35:\"envato-elements/envato-elements.php\";s:11:\"new_version\";s:6:\"2.0.13\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/envato-elements/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/envato-elements.2.0.13.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/envato-elements/assets/icon-256x256.png?rev=2065415\";s:2:\"1x\";s:68:\"https://ps.w.org/envato-elements/assets/icon-128x128.png?rev=2065415\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/envato-elements/assets/banner-1544x500.png?rev=2303035\";s:2:\"1x\";s:70:\"https://ps.w.org/envato-elements/assets/banner-772x250.png?rev=2303035\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:39:\"jeg-elementor-kit/jeg-elementor-kit.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:31:\"w.org/plugins/jeg-elementor-kit\";s:4:\"slug\";s:17:\"jeg-elementor-kit\";s:6:\"plugin\";s:39:\"jeg-elementor-kit/jeg-elementor-kit.php\";s:11:\"new_version\";s:5:\"2.6.7\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/jeg-elementor-kit/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/jeg-elementor-kit.2.6.7.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:62:\"https://ps.w.org/jeg-elementor-kit/assets/icon.svg?rev=2587455\";s:3:\"svg\";s:62:\"https://ps.w.org/jeg-elementor-kit/assets/icon.svg?rev=2587455\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/jeg-elementor-kit/assets/banner-1544x500.png?rev=2575635\";s:2:\"1x\";s:72:\"https://ps.w.org/jeg-elementor-kit/assets/banner-772x250.png?rev=2575635\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/jeg-elementor-kit/assets/banner-1544x500-rtl.png?rev=2575635\";s:2:\"1x\";s:76:\"https://ps.w.org/jeg-elementor-kit/assets/banner-772x250-rtl.png?rev=2575635\";}s:8:\"requires\";s:3:\"5.0\";}s:20:\"lottiefiles/host.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/lottiefiles\";s:4:\"slug\";s:11:\"lottiefiles\";s:6:\"plugin\";s:20:\"lottiefiles/host.php\";s:11:\"new_version\";s:5:\"2.8.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/lottiefiles/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/lottiefiles.2.8.0.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:56:\"https://ps.w.org/lottiefiles/assets/icon.svg?rev=2726590\";s:3:\"svg\";s:56:\"https://ps.w.org/lottiefiles/assets/icon.svg?rev=2726590\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/lottiefiles/assets/banner-1544x500.png?rev=2726590\";s:2:\"1x\";s:66:\"https://ps.w.org/lottiefiles/assets/banner-772x250.png?rev=2726590\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:19:\"metform/metform.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/metform\";s:4:\"slug\";s:7:\"metform\";s:6:\"plugin\";s:19:\"metform/metform.php\";s:11:\"new_version\";s:5:\"3.8.9\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/metform/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/metform.3.8.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/metform/assets/icon-256x256.png?rev=2544152\";s:2:\"1x\";s:60:\"https://ps.w.org/metform/assets/icon-128x128.png?rev=2544152\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/metform/assets/banner-1544x500.png?rev=2544152\";s:2:\"1x\";s:62:\"https://ps.w.org/metform/assets/banner-772x250.png?rev=2544152\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:43:\"template-kit-import/template-kit-import.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:33:\"w.org/plugins/template-kit-import\";s:4:\"slug\";s:19:\"template-kit-import\";s:6:\"plugin\";s:43:\"template-kit-import/template-kit-import.php\";s:11:\"new_version\";s:6:\"1.0.15\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/template-kit-import/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/template-kit-import.1.0.15.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/template-kit-import/assets/icon-256x256.png?rev=2228216\";s:2:\"1x\";s:72:\"https://ps.w.org/template-kit-import/assets/icon-128x128.png?rev=2228216\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}}}','no');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=1589 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1,2,'_wp_page_template','default'),(2,3,'_wp_page_template','default'),(3,5,'_elementor_edit_mode','builder'),(4,5,'_elementor_template_type','kit'),(9,7,'_wp_attached_file','2023/07/001-phone-call.png'),(10,7,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:406;s:6:\"height\";i:406;s:4:\"file\";s:26:\"2023/07/001-phone-call.png\";s:8:\"filesize\";i:4541;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"001-phone-call-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9170;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"001-phone-call-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4098;}}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:{}}}'),(11,7,'_elementor_source_image_hash','5e65271383cf25f34d54173295964066f6abece8'),(12,8,'_wp_attached_file','2023/07/line.png'),(13,8,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2;s:6:\"height\";i:42;s:4:\"file\";s:16:\"2023/07/line.png\";s:8:\"filesize\";i:83;s:5:\"sizes\";a:1:{s:21:\"elementor_custom_1x21\";a:4:{s:4:\"file\";s:68:\"elementor/thumbs/line-q97j1l3nd5tv0i9w2qjrl22hpfp5fiwusobfz2nqc2.png\";s:5:\"width\";i:1;s:6:\"height\";i:21;s:9:\"mime-type\";s:9:\"image/png\";}}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:{}}}'),(14,8,'_elementor_source_image_hash','29de4e0fa4b49b2998a90de77885dfc9f1f8ca14'),(15,9,'_wp_attached_file','2023/07/002-email.png'),(16,9,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:352;s:4:\"file\";s:21:\"2023/07/002-email.png\";s:8:\"filesize\";i:4220;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"002-email-300x206.png\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6868;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"002-email-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3001;}}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:{}}}'),(17,9,'_elementor_source_image_hash','ab4f74d4c7027c0c7ecaee237661773e04d0fc5e'),(18,10,'_wp_attached_file','2023/07/logotype.png'),(19,10,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:509;s:4:\"file\";s:20:\"2023/07/logotype.png\";s:8:\"filesize\";i:19376;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"logotype-300x298.png\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9760;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"logotype-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4242;}s:24:\"elementor_custom_430x430\";a:4:{s:4:\"file\";s:72:\"elementor/thumbs/logotype-q97j1mzgyywmdnc0qojg302dv80qgdiil8empnffpo.png\";s:5:\"width\";i:430;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}}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:{}}}'),(20,10,'_elementor_source_image_hash','8cda17c41a11e00bc310a388981fd780cfb45e67'),(21,11,'_elementor_edit_mode','builder'),(22,11,'_elementor_template_type','page'),(25,11,'_elementor_version','3.14.1'),(26,11,'_elementor_data','[{\"id\":\"3ba2ce8d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=89bc7fb\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43b71b51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7935e0bd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"13\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c656784\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":60,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36b12758\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"7\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/001-phone-call.png\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_element_width\":\"auto\",\"__dynamic__\":[],\"space_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e5b9cc6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"+0 (555) 123 45 67\",\"_margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e52ced7\",\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"595259f0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"8\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/line.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"1\",\"height\":\"21\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1db56fb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"9\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/002-email.png\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_element_width\":\"auto\",\"__dynamic__\":[],\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44e3982d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"sales@yoursite.com\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e52ced7\",\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"738950a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"flex-end\",\"content_position_mobile\":\"center\",\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d106091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Follow Us :\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e52ced7\",\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d7414f6\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b12f993\",\"item_icon_color\":\"custom\",\"__globals__\":{\"item_icon_primary_color\":\"globals\\/colors?id=89bc7fb\",\"item_icon_secondary_color\":\"globals\\/colors?id=faadce6\"},\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"57f84bf\",\"item_icon_color\":\"custom\",\"__globals__\":{\"item_icon_primary_color\":\"globals\\/colors?id=89bc7fb\",\"item_icon_secondary_color\":\"globals\\/colors?id=faadce6\"},\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"_id\":\"040ab3c\",\"item_icon_color\":\"custom\",\"__globals__\":{\"item_icon_primary_color\":\"globals\\/colors?id=89bc7fb\",\"item_icon_secondary_color\":\"globals\\/colors?id=faadce6\"},\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"_id\":\"f2b02fc\",\"social_icon\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"item_icon_color\":\"custom\",\"__globals__\":{\"item_icon_primary_color\":\"globals\\/colors?id=89bc7fb\",\"item_icon_secondary_color\":\"globals\\/colors?id=faadce6\"},\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":500,\"_element_width\":\"auto\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fd6b1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=1d81b29\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"20dba16f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"30\",\"bottom\":\"21\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2822355f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e3ededd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"yeasty\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8.4\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=4bb5246\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f156669\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(29,13,'_elementor_edit_mode','builder'),(30,13,'_elementor_template_type','page'),(31,13,'_elementor_version','3.14.1'),(32,13,'_elementor_data','[{\"id\":\"3ba2ce8d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=89bc7fb\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43b71b51\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7935e0bd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"11\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"13\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c656784\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":60,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"36b12758\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"7\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/001-phone-call.png\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_element_width\":\"auto\",\"__dynamic__\":[],\"space_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e5b9cc6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"+0 (555) 123 45 67\",\"_margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e52ced7\",\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"3\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"595259f0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"8\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/line.png\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"1\",\"height\":\"21\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1db56fb5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"9\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/002-email.png\"},\"image_size\":\"full\",\"link_to\":\"custom\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_element_width\":\"auto\",\"__dynamic__\":[],\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-4\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44e3982d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"sales@yoursite.com\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"11\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e52ced7\",\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"2\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"738950a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"align\":\"flex-end\",\"content_position_mobile\":\"center\",\"align_mobile\":\"center\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"_inline_size_tablet\":40,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1d106091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Follow Us :\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"_element_width\":\"auto\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e52ced7\",\"text_color\":\"globals\\/colors?id=primary\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d7414f6\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"b12f993\",\"item_icon_color\":\"custom\",\"__globals__\":{\"item_icon_primary_color\":\"globals\\/colors?id=89bc7fb\",\"item_icon_secondary_color\":\"globals\\/colors?id=faadce6\"},\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"57f84bf\",\"item_icon_color\":\"custom\",\"__globals__\":{\"item_icon_primary_color\":\"globals\\/colors?id=89bc7fb\",\"item_icon_secondary_color\":\"globals\\/colors?id=faadce6\"},\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-dribbble\",\"library\":\"fa-brands\"},\"_id\":\"040ab3c\",\"item_icon_color\":\"custom\",\"__globals__\":{\"item_icon_primary_color\":\"globals\\/colors?id=89bc7fb\",\"item_icon_secondary_color\":\"globals\\/colors?id=faadce6\"},\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"_id\":\"f2b02fc\",\"social_icon\":{\"value\":\"icon icon-instagram-1\",\"library\":\"ekiticons\"},\"item_icon_color\":\"custom\",\"__globals__\":{\"item_icon_primary_color\":\"globals\\/colors?id=89bc7fb\",\"item_icon_secondary_color\":\"globals\\/colors?id=faadce6\"},\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"icon_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"hover_animation\":\"grow\",\"_margin\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":500,\"_element_width\":\"auto\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_spacing_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4fd6b1f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=1d81b29\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"20dba16f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"30\",\"bottom\":\"21\",\"left\":\"30\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2822355f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":30,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e3ededd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"yeasty\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8.4\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=4bb5246\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7f156669\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":70,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(33,11,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(34,11,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(35,11,'_wp_page_template','default'),(36,11,'envato_tk_source_kit','6'),(37,11,'envato_tk_source_index','1'),(47,15,'_elementor_edit_mode','builder'),(48,15,'_elementor_template_type','kit'),(49,15,'_elementor_version','3.14.1'),(50,16,'_elementor_edit_mode','builder'),(51,16,'_elementor_template_type','section'),(52,16,'_elementor_version','3.14.1'),(53,15,'_wp_page_template','default'),(54,15,'_elementor_page_settings','a:138:{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:\"#222731\";}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:\"#7C8596\";}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:14:{i:0;a:3:{s:3:\"_id\";s:7:\"faadce6\";s:5:\"title\";s:6:\"Yellow\";s:5:\"color\";s:7:\"#F8BC3E\";}i:1;a:3:{s:3:\"_id\";s:7:\"6134d38\";s:5:\"title\";s:4:\"Blue\";s:5:\"color\";s:7:\"#397CF2\";}i:2;a:3:{s:3:\"_id\";s:7:\"6018f3f\";s:5:\"title\";s:3:\"Red\";s:5:\"color\";s:7:\"#E32B2C\";}i:3;a:3:{s:3:\"_id\";s:7:\"32f2e26\";s:5:\"title\";s:9:\"TextLight\";s:5:\"color\";s:7:\"#A4A8B1\";}i:4;a:3:{s:3:\"_id\";s:7:\"89bc7fb\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:5;a:3:{s:3:\"_id\";s:7:\"08931f6\";s:5:\"title\";s:11:\"BottonWhite\";s:5:\"color\";s:7:\"#F9F9F9\";}i:6;a:3:{s:3:\"_id\";s:7:\"f7744ae\";s:5:\"title\";s:8:\"TextGrey\";s:5:\"color\";s:7:\"#CBCBCB\";}i:7;a:3:{s:3:\"_id\";s:7:\"16fdc7d\";s:5:\"title\";s:9:\"TextWhite\";s:5:\"color\";s:7:\"#FCFCFC\";}i:8;a:3:{s:3:\"_id\";s:7:\"01cddfc\";s:5:\"title\";s:14:\"TextMediumGrey\";s:5:\"color\";s:7:\"#828B9D\";}i:9;a:3:{s:3:\"_id\";s:7:\"d45d36c\";s:5:\"title\";s:14:\"BackgroundGrey\";s:5:\"color\";s:7:\"#EEF2F9\";}i:10;a:3:{s:3:\"_id\";s:7:\"67a0930\";s:5:\"title\";s:18:\"BackgroundDarkGrey\";s:5:\"color\";s:7:\"#707070\";}i:11;a:3:{s:3:\"_id\";s:7:\"6b033b9\";s:5:\"title\";s:12:\"TextTeamGrey\";s:5:\"color\";s:7:\"#EBEBEB\";}i:12;a:3:{s:3:\"_id\";s:7:\"1d81b29\";s:5:\"title\";s:13:\"LineOpacity40\";s:5:\"color\";s:9:\"#A4A8B166\";}i:13;a:3:{s:3:\"_id\";s:7:\"bd312b0\";s:5:\"title\";s:12:\"BackGreyBlog\";s:5:\"color\";s:7:\"#EFF2F9\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:13:{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:11:\"Nunito Sans\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.81299999999999994;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.647;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:3;a:13:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Button\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:22:\"typography_font_weight\";s:3:\"800\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.411;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:26:{i:0;a:13:{s:3:\"_id\";s:7:\"451e8fd\";s:5:\"title\";s:16:\"OptionalSubtitle\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.81299999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.571;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.835;s:5:\"sizes\";a:0:{}}}i:1;a:13:{s:3:\"_id\";s:7:\"4e31d3a\";s:5:\"title\";s:11:\"Description\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2629999999999999;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:2;a:13:{s:3:\"_id\";s:7:\"6d26cf0\";s:5:\"title\";s:6:\"Title1\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.5630000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0880000000000001;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:3;a:12:{s:3:\"_id\";s:7:\"a8811af\";s:5:\"title\";s:6:\"Title2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.9380000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1060000000000001;s:5:\"sizes\";a:0:{}}}i:4;a:13:{s:3:\"_id\";s:7:\"d693f50\";s:5:\"title\";s:6:\"Title3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.167;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:5;a:13:{s:3:\"_id\";s:7:\"74ac489\";s:5:\"title\";s:6:\"Title4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:6;a:13:{s:3:\"_id\";s:7:\"369ac72\";s:5:\"title\";s:6:\"Title5\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.474;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:7;a:13:{s:3:\"_id\";s:7:\"e52ced7\";s:5:\"title\";s:6:\"Title6\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:8;a:13:{s:3:\"_id\";s:7:\"4bb5246\";s:5:\"title\";s:8:\"MainLogo\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.139;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:-1.8;s:5:\"sizes\";a:0:{}}}i:9;a:13:{s:3:\"_id\";s:7:\"0a69ef1\";s:5:\"title\";s:10:\"TitleBig35\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.1880000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.286;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:10;a:13:{s:3:\"_id\";s:7:\"1dd2700\";s:5:\"title\";s:13:\"TitleMedium28\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.357;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:11;a:13:{s:3:\"_id\";s:7:\"d63ae38\";s:5:\"title\";s:16:\"NavigationHeader\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.81299999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.8820000000000001;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:12;a:13:{s:3:\"_id\";s:7:\"6b4fe22\";s:5:\"title\";s:9:\"PriceText\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.81299999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.294;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:13;a:13:{s:3:\"_id\";s:7:\"5fd4a47\";s:5:\"title\";s:15:\"TestimonialText\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.81299999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8819999999999999;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:14;a:13:{s:3:\"_id\";s:7:\"702dbf8\";s:5:\"title\";s:16:\"NavigationFooter\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.5630000000000002;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:15;a:12:{s:3:\"_id\";s:7:\"86f505b\";s:5:\"title\";s:11:\"PriceButton\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.68799999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}}i:16;a:13:{s:3:\"_id\";s:7:\"99eb625\";s:5:\"title\";s:11:\"ButtonEmail\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.3999999999999999;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:17;a:13:{s:3:\"_id\";s:7:\"cbe527d\";s:5:\"title\";s:18:\"DescriptionSmaller\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.474;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:-0.45000000000000001;s:5:\"sizes\";a:0:{}}}i:18;a:13:{s:3:\"_id\";s:7:\"845714c\";s:5:\"title\";s:9:\"BlogTitle\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.5;s:5:\"sizes\";a:0:{}}}i:19;a:13:{s:3:\"_id\";s:7:\"6b9ab35\";s:5:\"title\";s:8:\"Title5.2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.474;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}}i:20;a:13:{s:3:\"_id\";s:7:\"9ac63af\";s:5:\"title\";s:8:\"Title3.2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.167;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:21;a:13:{s:3:\"_id\";s:7:\"e9e764a\";s:5:\"title\";s:8:\"Title5.3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.474;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:22;a:13:{s:3:\"_id\";s:7:\"29c9cb9\";s:5:\"title\";s:5:\"Text2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.81299999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.647;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:23;a:13:{s:3:\"_id\";s:7:\"6245153\";s:5:\"title\";s:12:\"BigTitle35.2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.1880000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.286;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:24;a:13:{s:3:\"_id\";s:7:\"faaf7fc\";s:5:\"title\";s:8:\"Title2.2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.9380000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1060000000000001;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:25;a:13:{s:3:\"_id\";s:7:\"76d1ae6\";s:5:\"title\";s:7:\"Button2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:21:\"space_between_widgets\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:21:\"default_page_template\";s:23:\"elementor_header_footer\";s:15:\"activeItemIndex\";i:1;s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1170;s:5:\"sizes\";a:0:{}}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";s:2:\"50\";s:6:\"bottom\";s:2:\"50\";s:4:\"left\";s:2:\"50\";s:8:\"isLinked\";b:1;}s:26:\"button_hover_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";s:2:\"50\";s:6:\"bottom\";s:2:\"50\";s:4:\"left\";s:2:\"50\";s:8:\"isLinked\";b:0;}s:11:\"__globals__\";a:23:{s:17:\"button_text_color\";s:25:\"globals/colors?id=89bc7fb\";s:23:\"button_background_color\";s:25:\"globals/colors?id=6134d38\";s:28:\"button_typography_typography\";s:28:\"globals/typography?id=accent\";s:23:\"button_hover_text_color\";s:25:\"globals/colors?id=89bc7fb\";s:29:\"button_hover_background_color\";s:25:\"globals/colors?id=faadce6\";s:10:\"body_color\";s:25:\"globals/colors?id=primary\";s:17:\"link_normal_color\";s:25:\"globals/colors?id=6134d38\";s:16:\"link_hover_color\";s:25:\"globals/colors?id=faadce6\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=6d26cf0\";s:24:\"h2_typography_typography\";s:29:\"globals/typography?id=a8811af\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=d693f50\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=74ac489\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=369ac72\";s:24:\"h6_typography_typography\";s:29:\"globals/typography?id=e52ced7\";s:32:\"link_hover_typography_typography\";s:0:\"\";s:26:\"body_typography_typography\";s:0:\"\";s:33:\"link_normal_typography_typography\";s:0:\"\";s:16:\"form_label_color\";s:22:\"globals/colors?id=text\";s:32:\"form_label_typography_typography\";s:26:\"globals/typography?id=text\";s:32:\"form_field_typography_typography\";s:26:\"globals/typography?id=text\";s:21:\"form_field_text_color\";s:25:\"globals/colors?id=32f2e26\";s:27:\"form_field_background_color\";s:25:\"globals/colors?id=89bc7fb\";s:23:\"form_field_border_color\";s:25:\"globals/colors?id=32f2e26\";}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"em\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:3:\"2.6\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:3:\"2.6\";s:8:\"isLinked\";b:0;}s:21:\"button_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"em\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:3:\"1.8\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:3:\"1.8\";s:8:\"isLinked\";b:0;}s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:10:\"body_color\";s:7:\"#060917\";s:27:\"body_typography_font_family\";s:5:\"Inter\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"400\";s:30:\"body_typography_text_transform\";s:4:\"none\";s:26:\"body_typography_font_style\";s:6:\"normal\";s:31:\"body_typography_text_decoration\";s:4:\"none\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.647;s:5:\"sizes\";a:0:{}}s:34:\"body_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:30:\"body_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:17:\"link_normal_color\";s:7:\"#397CF2\";s:34:\"link_normal_typography_font_family\";s:5:\"Inter\";s:32:\"link_normal_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:39:\"link_normal_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:39:\"link_normal_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:34:\"link_normal_typography_font_weight\";s:3:\"400\";s:37:\"link_normal_typography_text_transform\";s:4:\"none\";s:33:\"link_normal_typography_font_style\";s:6:\"normal\";s:38:\"link_normal_typography_text_decoration\";s:4:\"none\";s:34:\"link_normal_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.647;s:5:\"sizes\";a:0:{}}s:41:\"link_normal_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:37:\"link_normal_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:16:\"link_hover_color\";s:7:\"#F8BC3E\";s:33:\"link_hover_typography_font_family\";s:5:\"Inter\";s:31:\"link_hover_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:38:\"link_hover_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:38:\"link_hover_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:33:\"link_hover_typography_font_weight\";s:3:\"400\";s:36:\"link_hover_typography_text_transform\";s:4:\"none\";s:32:\"link_hover_typography_font_style\";s:6:\"normal\";s:37:\"link_hover_typography_text_decoration\";s:4:\"none\";s:33:\"link_hover_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.647;s:5:\"sizes\";a:0:{}}s:40:\"link_hover_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:36:\"link_hover_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:11:\"Nunito Sans\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.5630000000000002;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"800\";s:28:\"h1_typography_text_transform\";s:10:\"capitalize\";s:24:\"h1_typography_font_style\";s:6:\"normal\";s:29:\"h1_typography_text_decoration\";s:4:\"none\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0880000000000001;s:5:\"sizes\";a:0:{}}s:28:\"h1_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:11:\"Nunito Sans\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.9380000000000002;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.25;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"800\";s:28:\"h2_typography_text_transform\";s:10:\"capitalize\";s:24:\"h2_typography_font_style\";s:6:\"normal\";s:29:\"h2_typography_text_decoration\";s:4:\"none\";s:25:\"h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1060000000000001;s:5:\"sizes\";a:0:{}}s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:11:\"Nunito Sans\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"800\";s:28:\"h3_typography_text_transform\";s:10:\"capitalize\";s:24:\"h3_typography_font_style\";s:6:\"normal\";s:29:\"h3_typography_text_decoration\";s:4:\"none\";s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.167;s:5:\"sizes\";a:0:{}}s:28:\"h3_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:11:\"Nunito Sans\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"400\";s:28:\"h4_typography_text_transform\";s:4:\"none\";s:24:\"h4_typography_font_style\";s:6:\"normal\";s:29:\"h4_typography_text_decoration\";s:4:\"none\";s:25:\"h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:28:\"h4_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:11:\"Nunito Sans\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"800\";s:28:\"h5_typography_text_transform\";s:10:\"capitalize\";s:24:\"h5_typography_font_style\";s:6:\"normal\";s:29:\"h5_typography_text_decoration\";s:4:\"none\";s:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.474;s:5:\"sizes\";a:0:{}}s:28:\"h5_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:11:\"Nunito Sans\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"400\";s:28:\"h6_typography_text_transform\";s:4:\"none\";s:24:\"h6_typography_font_style\";s:6:\"normal\";s:29:\"h6_typography_text_decoration\";s:4:\"none\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:28:\"h6_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:5:\"Inter\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:34:\"button_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"700\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:28:\"button_typography_font_style\";s:6:\"normal\";s:33:\"button_typography_text_decoration\";s:4:\"none\";s:29:\"button_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#397CF2\";s:23:\"button_hover_text_color\";s:7:\"#060917\";s:29:\"button_hover_background_color\";s:7:\"#F8BC3E\";s:32:\"form_field_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:0;s:4:\"blur\";i:10;s:6:\"spread\";i:0;s:5:\"color\";s:33:\"rgba(0, 0, 0, 0.1607843137254902)\";}s:24:\"form_field_border_border\";s:5:\"solid\";s:23:\"form_field_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:33:\"button_box_shadow_box_shadow_type\";s:3:\"yes\";s:28:\"button_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:27;s:4:\"blur\";i:40;s:6:\"spread\";i:12;s:5:\"color\";s:67:\"rgba(34, 39.00000000000001, 49.00000000000001, 0.14901960784313725)\";}}'),(55,15,'_elementor_data','[]'),(56,17,'_elementor_edit_mode','builder'),(57,17,'_elementor_template_type','section'),(58,17,'_elementor_version','3.14.1'),(59,17,'_wp_page_template','default'),(60,17,'_elementor_page_settings','a:138:{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:\"#222731\";}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:\"#7C8596\";}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:14:{i:0;a:3:{s:3:\"_id\";s:7:\"faadce6\";s:5:\"title\";s:6:\"Yellow\";s:5:\"color\";s:7:\"#F8BC3E\";}i:1;a:3:{s:3:\"_id\";s:7:\"6134d38\";s:5:\"title\";s:4:\"Blue\";s:5:\"color\";s:7:\"#397CF2\";}i:2;a:3:{s:3:\"_id\";s:7:\"6018f3f\";s:5:\"title\";s:3:\"Red\";s:5:\"color\";s:7:\"#E32B2C\";}i:3;a:3:{s:3:\"_id\";s:7:\"32f2e26\";s:5:\"title\";s:9:\"TextLight\";s:5:\"color\";s:7:\"#A4A8B1\";}i:4;a:3:{s:3:\"_id\";s:7:\"89bc7fb\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:5;a:3:{s:3:\"_id\";s:7:\"08931f6\";s:5:\"title\";s:11:\"BottonWhite\";s:5:\"color\";s:7:\"#F9F9F9\";}i:6;a:3:{s:3:\"_id\";s:7:\"f7744ae\";s:5:\"title\";s:8:\"TextGrey\";s:5:\"color\";s:7:\"#CBCBCB\";}i:7;a:3:{s:3:\"_id\";s:7:\"16fdc7d\";s:5:\"title\";s:9:\"TextWhite\";s:5:\"color\";s:7:\"#FCFCFC\";}i:8;a:3:{s:3:\"_id\";s:7:\"01cddfc\";s:5:\"title\";s:14:\"TextMediumGrey\";s:5:\"color\";s:7:\"#828B9D\";}i:9;a:3:{s:3:\"_id\";s:7:\"d45d36c\";s:5:\"title\";s:14:\"BackgroundGrey\";s:5:\"color\";s:7:\"#EEF2F9\";}i:10;a:3:{s:3:\"_id\";s:7:\"67a0930\";s:5:\"title\";s:18:\"BackgroundDarkGrey\";s:5:\"color\";s:7:\"#707070\";}i:11;a:3:{s:3:\"_id\";s:7:\"6b033b9\";s:5:\"title\";s:12:\"TextTeamGrey\";s:5:\"color\";s:7:\"#EBEBEB\";}i:12;a:3:{s:3:\"_id\";s:7:\"1d81b29\";s:5:\"title\";s:13:\"LineOpacity40\";s:5:\"color\";s:9:\"#A4A8B166\";}i:13;a:3:{s:3:\"_id\";s:7:\"bd312b0\";s:5:\"title\";s:12:\"BackGreyBlog\";s:5:\"color\";s:7:\"#EFF2F9\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:13:{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:11:\"Nunito Sans\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.81299999999999994;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.647;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:3;a:13:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Button\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:22:\"typography_font_weight\";s:3:\"800\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.411;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:26:{i:0;a:13:{s:3:\"_id\";s:7:\"451e8fd\";s:5:\"title\";s:16:\"OptionalSubtitle\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.81299999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.571;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.835;s:5:\"sizes\";a:0:{}}}i:1;a:13:{s:3:\"_id\";s:7:\"4e31d3a\";s:5:\"title\";s:11:\"Description\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2629999999999999;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:2;a:13:{s:3:\"_id\";s:7:\"6d26cf0\";s:5:\"title\";s:6:\"Title1\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.5630000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0880000000000001;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:3;a:12:{s:3:\"_id\";s:7:\"a8811af\";s:5:\"title\";s:6:\"Title2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.9380000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1060000000000001;s:5:\"sizes\";a:0:{}}}i:4;a:13:{s:3:\"_id\";s:7:\"d693f50\";s:5:\"title\";s:6:\"Title3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.167;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:5;a:13:{s:3:\"_id\";s:7:\"74ac489\";s:5:\"title\";s:6:\"Title4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:6;a:13:{s:3:\"_id\";s:7:\"369ac72\";s:5:\"title\";s:6:\"Title5\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.474;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:7;a:13:{s:3:\"_id\";s:7:\"e52ced7\";s:5:\"title\";s:6:\"Title6\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:8;a:13:{s:3:\"_id\";s:7:\"4bb5246\";s:5:\"title\";s:8:\"MainLogo\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.139;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:-1.8;s:5:\"sizes\";a:0:{}}}i:9;a:13:{s:3:\"_id\";s:7:\"0a69ef1\";s:5:\"title\";s:10:\"TitleBig35\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.1880000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.286;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:10;a:13:{s:3:\"_id\";s:7:\"1dd2700\";s:5:\"title\";s:13:\"TitleMedium28\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.357;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:11;a:13:{s:3:\"_id\";s:7:\"d63ae38\";s:5:\"title\";s:16:\"NavigationHeader\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.81299999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.8820000000000001;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:12;a:13:{s:3:\"_id\";s:7:\"6b4fe22\";s:5:\"title\";s:9:\"PriceText\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.81299999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.294;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:13;a:13:{s:3:\"_id\";s:7:\"5fd4a47\";s:5:\"title\";s:15:\"TestimonialText\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.81299999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8819999999999999;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:14;a:13:{s:3:\"_id\";s:7:\"702dbf8\";s:5:\"title\";s:16:\"NavigationFooter\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.5630000000000002;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:15;a:12:{s:3:\"_id\";s:7:\"86f505b\";s:5:\"title\";s:11:\"PriceButton\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.68799999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}}i:16;a:13:{s:3:\"_id\";s:7:\"99eb625\";s:5:\"title\";s:11:\"ButtonEmail\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.3999999999999999;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:17;a:13:{s:3:\"_id\";s:7:\"cbe527d\";s:5:\"title\";s:18:\"DescriptionSmaller\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.474;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:-0.45000000000000001;s:5:\"sizes\";a:0:{}}}i:18;a:13:{s:3:\"_id\";s:7:\"845714c\";s:5:\"title\";s:9:\"BlogTitle\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.5;s:5:\"sizes\";a:0:{}}}i:19;a:13:{s:3:\"_id\";s:7:\"6b9ab35\";s:5:\"title\";s:8:\"Title5.2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.474;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}}i:20;a:13:{s:3:\"_id\";s:7:\"9ac63af\";s:5:\"title\";s:8:\"Title3.2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.167;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:21;a:13:{s:3:\"_id\";s:7:\"e9e764a\";s:5:\"title\";s:8:\"Title5.3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.474;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:22;a:13:{s:3:\"_id\";s:7:\"29c9cb9\";s:5:\"title\";s:5:\"Text2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.81299999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.647;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:23;a:13:{s:3:\"_id\";s:7:\"6245153\";s:5:\"title\";s:12:\"BigTitle35.2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.1880000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.286;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:24;a:13:{s:3:\"_id\";s:7:\"faaf7fc\";s:5:\"title\";s:8:\"Title2.2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.9380000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1060000000000001;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:25;a:13:{s:3:\"_id\";s:7:\"76d1ae6\";s:5:\"title\";s:7:\"Button2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:21:\"space_between_widgets\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:21:\"default_page_template\";s:23:\"elementor_header_footer\";s:15:\"activeItemIndex\";i:1;s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1170;s:5:\"sizes\";a:0:{}}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";s:2:\"50\";s:6:\"bottom\";s:2:\"50\";s:4:\"left\";s:2:\"50\";s:8:\"isLinked\";b:1;}s:26:\"button_hover_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";s:2:\"50\";s:6:\"bottom\";s:2:\"50\";s:4:\"left\";s:2:\"50\";s:8:\"isLinked\";b:0;}s:11:\"__globals__\";a:23:{s:17:\"button_text_color\";s:25:\"globals/colors?id=89bc7fb\";s:23:\"button_background_color\";s:25:\"globals/colors?id=6134d38\";s:28:\"button_typography_typography\";s:28:\"globals/typography?id=accent\";s:23:\"button_hover_text_color\";s:25:\"globals/colors?id=89bc7fb\";s:29:\"button_hover_background_color\";s:25:\"globals/colors?id=faadce6\";s:10:\"body_color\";s:25:\"globals/colors?id=primary\";s:17:\"link_normal_color\";s:25:\"globals/colors?id=6134d38\";s:16:\"link_hover_color\";s:25:\"globals/colors?id=faadce6\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=6d26cf0\";s:24:\"h2_typography_typography\";s:29:\"globals/typography?id=a8811af\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=d693f50\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=74ac489\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=369ac72\";s:24:\"h6_typography_typography\";s:29:\"globals/typography?id=e52ced7\";s:32:\"link_hover_typography_typography\";s:0:\"\";s:26:\"body_typography_typography\";s:0:\"\";s:33:\"link_normal_typography_typography\";s:0:\"\";s:16:\"form_label_color\";s:22:\"globals/colors?id=text\";s:32:\"form_label_typography_typography\";s:26:\"globals/typography?id=text\";s:32:\"form_field_typography_typography\";s:26:\"globals/typography?id=text\";s:21:\"form_field_text_color\";s:25:\"globals/colors?id=32f2e26\";s:27:\"form_field_background_color\";s:25:\"globals/colors?id=89bc7fb\";s:23:\"form_field_border_color\";s:25:\"globals/colors?id=32f2e26\";}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"em\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:3:\"2.6\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:3:\"2.6\";s:8:\"isLinked\";b:0;}s:21:\"button_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"em\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:3:\"1.8\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:3:\"1.8\";s:8:\"isLinked\";b:0;}s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:10:\"body_color\";s:7:\"#060917\";s:27:\"body_typography_font_family\";s:5:\"Inter\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"400\";s:30:\"body_typography_text_transform\";s:4:\"none\";s:26:\"body_typography_font_style\";s:6:\"normal\";s:31:\"body_typography_text_decoration\";s:4:\"none\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.647;s:5:\"sizes\";a:0:{}}s:34:\"body_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:30:\"body_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:17:\"link_normal_color\";s:7:\"#397CF2\";s:34:\"link_normal_typography_font_family\";s:5:\"Inter\";s:32:\"link_normal_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:39:\"link_normal_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:39:\"link_normal_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:34:\"link_normal_typography_font_weight\";s:3:\"400\";s:37:\"link_normal_typography_text_transform\";s:4:\"none\";s:33:\"link_normal_typography_font_style\";s:6:\"normal\";s:38:\"link_normal_typography_text_decoration\";s:4:\"none\";s:34:\"link_normal_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.647;s:5:\"sizes\";a:0:{}}s:41:\"link_normal_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:37:\"link_normal_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:16:\"link_hover_color\";s:7:\"#F8BC3E\";s:33:\"link_hover_typography_font_family\";s:5:\"Inter\";s:31:\"link_hover_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:38:\"link_hover_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:38:\"link_hover_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:33:\"link_hover_typography_font_weight\";s:3:\"400\";s:36:\"link_hover_typography_text_transform\";s:4:\"none\";s:32:\"link_hover_typography_font_style\";s:6:\"normal\";s:37:\"link_hover_typography_text_decoration\";s:4:\"none\";s:33:\"link_hover_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.647;s:5:\"sizes\";a:0:{}}s:40:\"link_hover_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:36:\"link_hover_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:11:\"Nunito Sans\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.5630000000000002;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"800\";s:28:\"h1_typography_text_transform\";s:10:\"capitalize\";s:24:\"h1_typography_font_style\";s:6:\"normal\";s:29:\"h1_typography_text_decoration\";s:4:\"none\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0880000000000001;s:5:\"sizes\";a:0:{}}s:28:\"h1_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:11:\"Nunito Sans\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.9380000000000002;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.25;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"800\";s:28:\"h2_typography_text_transform\";s:10:\"capitalize\";s:24:\"h2_typography_font_style\";s:6:\"normal\";s:29:\"h2_typography_text_decoration\";s:4:\"none\";s:25:\"h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1060000000000001;s:5:\"sizes\";a:0:{}}s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:11:\"Nunito Sans\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"800\";s:28:\"h3_typography_text_transform\";s:10:\"capitalize\";s:24:\"h3_typography_font_style\";s:6:\"normal\";s:29:\"h3_typography_text_decoration\";s:4:\"none\";s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.167;s:5:\"sizes\";a:0:{}}s:28:\"h3_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:11:\"Nunito Sans\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"400\";s:28:\"h4_typography_text_transform\";s:4:\"none\";s:24:\"h4_typography_font_style\";s:6:\"normal\";s:29:\"h4_typography_text_decoration\";s:4:\"none\";s:25:\"h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:28:\"h4_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:11:\"Nunito Sans\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"800\";s:28:\"h5_typography_text_transform\";s:10:\"capitalize\";s:24:\"h5_typography_font_style\";s:6:\"normal\";s:29:\"h5_typography_text_decoration\";s:4:\"none\";s:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.474;s:5:\"sizes\";a:0:{}}s:28:\"h5_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:11:\"Nunito Sans\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"400\";s:28:\"h6_typography_text_transform\";s:4:\"none\";s:24:\"h6_typography_font_style\";s:6:\"normal\";s:29:\"h6_typography_text_decoration\";s:4:\"none\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:28:\"h6_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:5:\"Inter\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:34:\"button_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"700\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:28:\"button_typography_font_style\";s:6:\"normal\";s:33:\"button_typography_text_decoration\";s:4:\"none\";s:29:\"button_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#397CF2\";s:23:\"button_hover_text_color\";s:7:\"#060917\";s:29:\"button_hover_background_color\";s:7:\"#F8BC3E\";s:32:\"form_field_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:0;s:4:\"blur\";i:10;s:6:\"spread\";i:0;s:5:\"color\";s:33:\"rgba(0, 0, 0, 0.1607843137254902)\";}s:24:\"form_field_border_border\";s:5:\"solid\";s:23:\"form_field_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:33:\"button_box_shadow_box_shadow_type\";s:3:\"yes\";s:28:\"button_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:27;s:4:\"blur\";i:40;s:6:\"spread\";i:12;s:5:\"color\";s:67:\"rgba(34, 39.00000000000001, 49.00000000000001, 0.14901960784313725)\";}}'),(61,17,'_elementor_data','[]'),(62,15,'_elementor_page_assets','a:0:{}'),(63,15,'envato_tk_source_kit','6'),(64,15,'envato_tk_source_index','0'),(65,18,'_elementor_edit_mode','builder'),(66,18,'_elementor_template_type','kit'),(67,18,'_elementor_version','3.14.1'),(68,18,'_wp_page_template','default'),(69,18,'_elementor_page_settings','a:138:{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:\"#222731\";}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:\"#7C8596\";}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:14:{i:0;a:3:{s:3:\"_id\";s:7:\"faadce6\";s:5:\"title\";s:6:\"Yellow\";s:5:\"color\";s:7:\"#F8BC3E\";}i:1;a:3:{s:3:\"_id\";s:7:\"6134d38\";s:5:\"title\";s:4:\"Blue\";s:5:\"color\";s:7:\"#397CF2\";}i:2;a:3:{s:3:\"_id\";s:7:\"6018f3f\";s:5:\"title\";s:3:\"Red\";s:5:\"color\";s:7:\"#E32B2C\";}i:3;a:3:{s:3:\"_id\";s:7:\"32f2e26\";s:5:\"title\";s:9:\"TextLight\";s:5:\"color\";s:7:\"#A4A8B1\";}i:4;a:3:{s:3:\"_id\";s:7:\"89bc7fb\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}i:5;a:3:{s:3:\"_id\";s:7:\"08931f6\";s:5:\"title\";s:11:\"BottonWhite\";s:5:\"color\";s:7:\"#F9F9F9\";}i:6;a:3:{s:3:\"_id\";s:7:\"f7744ae\";s:5:\"title\";s:8:\"TextGrey\";s:5:\"color\";s:7:\"#CBCBCB\";}i:7;a:3:{s:3:\"_id\";s:7:\"16fdc7d\";s:5:\"title\";s:9:\"TextWhite\";s:5:\"color\";s:7:\"#FCFCFC\";}i:8;a:3:{s:3:\"_id\";s:7:\"01cddfc\";s:5:\"title\";s:14:\"TextMediumGrey\";s:5:\"color\";s:7:\"#828B9D\";}i:9;a:3:{s:3:\"_id\";s:7:\"d45d36c\";s:5:\"title\";s:14:\"BackgroundGrey\";s:5:\"color\";s:7:\"#EEF2F9\";}i:10;a:3:{s:3:\"_id\";s:7:\"67a0930\";s:5:\"title\";s:18:\"BackgroundDarkGrey\";s:5:\"color\";s:7:\"#707070\";}i:11;a:3:{s:3:\"_id\";s:7:\"6b033b9\";s:5:\"title\";s:12:\"TextTeamGrey\";s:5:\"color\";s:7:\"#EBEBEB\";}i:12;a:3:{s:3:\"_id\";s:7:\"1d81b29\";s:5:\"title\";s:13:\"LineOpacity40\";s:5:\"color\";s:9:\"#A4A8B166\";}i:13;a:3:{s:3:\"_id\";s:7:\"bd312b0\";s:5:\"title\";s:12:\"BackGreyBlog\";s:5:\"color\";s:7:\"#EFF2F9\";}}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:6:\"Roboto\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Roboto Slab\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:13:{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:11:\"Nunito Sans\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.81299999999999994;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.647;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:3;a:13:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Button\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:22:\"typography_font_weight\";s:3:\"800\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.411;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:26:{i:0;a:13:{s:3:\"_id\";s:7:\"451e8fd\";s:5:\"title\";s:16:\"OptionalSubtitle\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.81299999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.571;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.835;s:5:\"sizes\";a:0:{}}}i:1;a:13:{s:3:\"_id\";s:7:\"4e31d3a\";s:5:\"title\";s:11:\"Description\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2629999999999999;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:2;a:13:{s:3:\"_id\";s:7:\"6d26cf0\";s:5:\"title\";s:6:\"Title1\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.5630000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0880000000000001;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:3;a:12:{s:3:\"_id\";s:7:\"a8811af\";s:5:\"title\";s:6:\"Title2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.9380000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1060000000000001;s:5:\"sizes\";a:0:{}}}i:4;a:13:{s:3:\"_id\";s:7:\"d693f50\";s:5:\"title\";s:6:\"Title3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.167;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:5;a:13:{s:3:\"_id\";s:7:\"74ac489\";s:5:\"title\";s:6:\"Title4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:6;a:13:{s:3:\"_id\";s:7:\"369ac72\";s:5:\"title\";s:6:\"Title5\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.474;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:7;a:13:{s:3:\"_id\";s:7:\"e52ced7\";s:5:\"title\";s:6:\"Title6\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:8;a:13:{s:3:\"_id\";s:7:\"4bb5246\";s:5:\"title\";s:8:\"MainLogo\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.139;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:-1.8;s:5:\"sizes\";a:0:{}}}i:9;a:13:{s:3:\"_id\";s:7:\"0a69ef1\";s:5:\"title\";s:10:\"TitleBig35\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.1880000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.286;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:10;a:13:{s:3:\"_id\";s:7:\"1dd2700\";s:5:\"title\";s:13:\"TitleMedium28\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.357;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:11;a:13:{s:3:\"_id\";s:7:\"d63ae38\";s:5:\"title\";s:16:\"NavigationHeader\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.81299999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.8820000000000001;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:12;a:13:{s:3:\"_id\";s:7:\"6b4fe22\";s:5:\"title\";s:9:\"PriceText\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.81299999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.294;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:13;a:13:{s:3:\"_id\";s:7:\"5fd4a47\";s:5:\"title\";s:15:\"TestimonialText\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.81299999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.8819999999999999;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:14;a:13:{s:3:\"_id\";s:7:\"702dbf8\";s:5:\"title\";s:16:\"NavigationFooter\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"700\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.5630000000000002;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:15;a:12:{s:3:\"_id\";s:7:\"86f505b\";s:5:\"title\";s:11:\"PriceButton\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.68799999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}}i:16;a:13:{s:3:\"_id\";s:7:\"99eb625\";s:5:\"title\";s:11:\"ButtonEmail\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.3999999999999999;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:17;a:13:{s:3:\"_id\";s:7:\"cbe527d\";s:5:\"title\";s:18:\"DescriptionSmaller\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.474;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:-0.45000000000000001;s:5:\"sizes\";a:0:{}}}i:18;a:13:{s:3:\"_id\";s:7:\"845714c\";s:5:\"title\";s:9:\"BlogTitle\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.5;s:5:\"sizes\";a:0:{}}}i:19;a:13:{s:3:\"_id\";s:7:\"6b9ab35\";s:5:\"title\";s:8:\"Title5.2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.474;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.80000000000000004;s:5:\"sizes\";a:0:{}}}i:20;a:13:{s:3:\"_id\";s:7:\"9ac63af\";s:5:\"title\";s:8:\"Title3.2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.167;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:21;a:13:{s:3:\"_id\";s:7:\"e9e764a\";s:5:\"title\";s:8:\"Title5.3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.474;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:22;a:13:{s:3:\"_id\";s:7:\"29c9cb9\";s:5:\"title\";s:5:\"Text2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.81299999999999994;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.647;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:23;a:13:{s:3:\"_id\";s:7:\"6245153\";s:5:\"title\";s:12:\"BigTitle35.2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.1880000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:4:\"none\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.286;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:24;a:13:{s:3:\"_id\";s:7:\"faaf7fc\";s:5:\"title\";s:8:\"Title2.2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.9380000000000002;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.25;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1060000000000001;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}i:25;a:13:{s:3:\"_id\";s:7:\"76d1ae6\";s:5:\"title\";s:7:\"Button2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"800\";s:25:\"typography_text_transform\";s:10:\"capitalize\";s:21:\"typography_font_style\";s:6:\"normal\";s:26:\"typography_text_decoration\";s:4:\"none\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:3;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:21:\"space_between_widgets\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:21:\"default_page_template\";s:23:\"elementor_header_footer\";s:15:\"activeItemIndex\";i:1;s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1170;s:5:\"sizes\";a:0:{}}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";s:2:\"50\";s:6:\"bottom\";s:2:\"50\";s:4:\"left\";s:2:\"50\";s:8:\"isLinked\";b:1;}s:26:\"button_hover_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"50\";s:5:\"right\";s:2:\"50\";s:6:\"bottom\";s:2:\"50\";s:4:\"left\";s:2:\"50\";s:8:\"isLinked\";b:0;}s:11:\"__globals__\";a:23:{s:17:\"button_text_color\";s:25:\"globals/colors?id=89bc7fb\";s:23:\"button_background_color\";s:25:\"globals/colors?id=6134d38\";s:28:\"button_typography_typography\";s:28:\"globals/typography?id=accent\";s:23:\"button_hover_text_color\";s:25:\"globals/colors?id=89bc7fb\";s:29:\"button_hover_background_color\";s:25:\"globals/colors?id=faadce6\";s:10:\"body_color\";s:25:\"globals/colors?id=primary\";s:17:\"link_normal_color\";s:25:\"globals/colors?id=6134d38\";s:16:\"link_hover_color\";s:25:\"globals/colors?id=faadce6\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=6d26cf0\";s:24:\"h2_typography_typography\";s:29:\"globals/typography?id=a8811af\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=d693f50\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=74ac489\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=369ac72\";s:24:\"h6_typography_typography\";s:29:\"globals/typography?id=e52ced7\";s:32:\"link_hover_typography_typography\";s:0:\"\";s:26:\"body_typography_typography\";s:0:\"\";s:33:\"link_normal_typography_typography\";s:0:\"\";s:16:\"form_label_color\";s:22:\"globals/colors?id=text\";s:32:\"form_label_typography_typography\";s:26:\"globals/typography?id=text\";s:32:\"form_field_typography_typography\";s:26:\"globals/typography?id=text\";s:21:\"form_field_text_color\";s:25:\"globals/colors?id=32f2e26\";s:27:\"form_field_background_color\";s:25:\"globals/colors?id=89bc7fb\";s:23:\"form_field_border_color\";s:25:\"globals/colors?id=32f2e26\";}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"em\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:3:\"2.6\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:3:\"2.6\";s:8:\"isLinked\";b:0;}s:21:\"button_padding_tablet\";a:6:{s:4:\"unit\";s:2:\"em\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:3:\"1.8\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:3:\"1.8\";s:8:\"isLinked\";b:0;}s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:10:\"body_color\";s:7:\"#060917\";s:27:\"body_typography_font_family\";s:5:\"Inter\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"400\";s:30:\"body_typography_text_transform\";s:4:\"none\";s:26:\"body_typography_font_style\";s:6:\"normal\";s:31:\"body_typography_text_decoration\";s:4:\"none\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.647;s:5:\"sizes\";a:0:{}}s:34:\"body_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:30:\"body_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:17:\"link_normal_color\";s:7:\"#397CF2\";s:34:\"link_normal_typography_font_family\";s:5:\"Inter\";s:32:\"link_normal_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:39:\"link_normal_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:39:\"link_normal_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:34:\"link_normal_typography_font_weight\";s:3:\"400\";s:37:\"link_normal_typography_text_transform\";s:4:\"none\";s:33:\"link_normal_typography_font_style\";s:6:\"normal\";s:38:\"link_normal_typography_text_decoration\";s:4:\"none\";s:34:\"link_normal_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.647;s:5:\"sizes\";a:0:{}}s:41:\"link_normal_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:37:\"link_normal_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:16:\"link_hover_color\";s:7:\"#F8BC3E\";s:33:\"link_hover_typography_font_family\";s:5:\"Inter\";s:31:\"link_hover_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:38:\"link_hover_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:38:\"link_hover_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:33:\"link_hover_typography_font_weight\";s:3:\"400\";s:36:\"link_hover_typography_text_transform\";s:4:\"none\";s:32:\"link_hover_typography_font_style\";s:6:\"normal\";s:37:\"link_hover_typography_text_decoration\";s:4:\"none\";s:33:\"link_hover_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.647;s:5:\"sizes\";a:0:{}}s:40:\"link_hover_typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3999999999999999;s:5:\"sizes\";a:0:{}}s:36:\"link_hover_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:11:\"Nunito Sans\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:3.5630000000000002;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.5;s:5:\"sizes\";a:0:{}}s:30:\"h1_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"800\";s:28:\"h1_typography_text_transform\";s:10:\"capitalize\";s:24:\"h1_typography_font_style\";s:6:\"normal\";s:29:\"h1_typography_text_decoration\";s:4:\"none\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0880000000000001;s:5:\"sizes\";a:0:{}}s:28:\"h1_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:11:\"Nunito Sans\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:2.9380000000000002;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.25;s:5:\"sizes\";a:0:{}}s:30:\"h2_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"800\";s:28:\"h2_typography_text_transform\";s:10:\"capitalize\";s:24:\"h2_typography_font_style\";s:6:\"normal\";s:29:\"h2_typography_text_decoration\";s:4:\"none\";s:25:\"h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1060000000000001;s:5:\"sizes\";a:0:{}}s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:11:\"Nunito Sans\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:30:\"h3_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"800\";s:28:\"h3_typography_text_transform\";s:10:\"capitalize\";s:24:\"h3_typography_font_style\";s:6:\"normal\";s:29:\"h3_typography_text_decoration\";s:4:\"none\";s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.167;s:5:\"sizes\";a:0:{}}s:28:\"h3_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:11:\"Nunito Sans\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.25;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.0629999999999999;s:5:\"sizes\";a:0:{}}s:30:\"h4_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.93799999999999994;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"400\";s:28:\"h4_typography_text_transform\";s:4:\"none\";s:24:\"h4_typography_font_style\";s:6:\"normal\";s:29:\"h4_typography_text_decoration\";s:4:\"none\";s:25:\"h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.6000000000000001;s:5:\"sizes\";a:0:{}}s:28:\"h4_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:11:\"Nunito Sans\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.1879999999999999;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:30:\"h5_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"800\";s:28:\"h5_typography_text_transform\";s:10:\"capitalize\";s:24:\"h5_typography_font_style\";s:6:\"normal\";s:29:\"h5_typography_text_decoration\";s:4:\"none\";s:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.474;s:5:\"sizes\";a:0:{}}s:28:\"h5_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:11:\"Nunito Sans\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:30:\"h6_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:0.75;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"400\";s:28:\"h6_typography_text_transform\";s:4:\"none\";s:24:\"h6_typography_font_style\";s:6:\"normal\";s:29:\"h6_typography_text_decoration\";s:4:\"none\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.75;s:5:\"sizes\";a:0:{}}s:28:\"h6_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:5:\"Inter\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";d:0.875;s:5:\"sizes\";a:0:{}}s:34:\"button_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:3:\"rem\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"700\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:28:\"button_typography_font_style\";s:6:\"normal\";s:33:\"button_typography_text_decoration\";s:4:\"none\";s:29:\"button_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:2;s:5:\"sizes\";a:0:{}}s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#397CF2\";s:23:\"button_hover_text_color\";s:7:\"#060917\";s:29:\"button_hover_background_color\";s:7:\"#F8BC3E\";s:32:\"form_field_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:0;s:4:\"blur\";i:10;s:6:\"spread\";i:0;s:5:\"color\";s:33:\"rgba(0, 0, 0, 0.1607843137254902)\";}s:24:\"form_field_border_border\";s:5:\"solid\";s:23:\"form_field_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:33:\"button_box_shadow_box_shadow_type\";s:3:\"yes\";s:28:\"button_box_shadow_box_shadow\";a:5:{s:10:\"horizontal\";i:0;s:8:\"vertical\";i:27;s:4:\"blur\";i:40;s:6:\"spread\";i:12;s:5:\"color\";s:67:\"rgba(34, 39.00000000000001, 49.00000000000001, 0.14901960784313725)\";}}'),(70,18,'_elementor_data','[]'),(71,18,'_elementor_page_assets','a:0:{}'),(72,19,'_wp_attached_file','2023/07/Home3-bg1.png'),(73,19,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:823;s:4:\"file\";s:21:\"2023/07/Home3-bg1.png\";s:8:\"filesize\";i:14949;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Home3-bg1-300x129.png\";s:5:\"width\";i:300;s:6:\"height\";i:129;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1327;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"Home3-bg1-1024x439.png\";s:5:\"width\";i:1024;s:6:\"height\";i:439;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6918;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Home3-bg1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:598;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"Home3-bg1-768x329.png\";s:5:\"width\";i:768;s:6:\"height\";i:329;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4463;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"Home3-bg1-1536x658.png\";s:5:\"width\";i:1536;s:6:\"height\";i:658;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13064;}}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:{}}}'),(74,19,'_elementor_source_image_hash','f284b68e7567b8e569616318b380aad22591145a'),(154,32,'_edit_lock','1689450777:1'),(155,32,'_wp_page_template','elementor_header_footer'),(156,32,'_elementor_edit_mode','builder'),(157,32,'_elementor_template_type','wp-page'),(158,32,'_elementor_version','3.14.1'),(160,34,'_wp_attached_file','2023/07/TDV_M86_03.jpg'),(161,34,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1569;s:4:\"file\";s:22:\"2023/07/TDV_M86_03.jpg\";s:8:\"filesize\";i:182015;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"TDV_M86_03-300x245.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12965;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"TDV_M86_03-1024x837.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:837;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64615;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"TDV_M86_03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5924;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"TDV_M86_03-768x628.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:628;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44726;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"TDV_M86_03-1536x1255.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1255;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103909;}}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:{}}}'),(162,34,'_elementor_source_image_hash','ea1dd76ac5a65ed902b0b90919948df854293664'),(163,35,'_wp_attached_file','2023/07/bgBlueSmall.png'),(164,35,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:900;s:4:\"file\";s:23:\"2023/07/bgBlueSmall.png\";s:8:\"filesize\";i:8133;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"bgBlueSmall-300x141.png\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2088;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"bgBlueSmall-1024x480.png\";s:5:\"width\";i:1024;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8569;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"bgBlueSmall-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:473;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"bgBlueSmall-768x360.png\";s:5:\"width\";i:768;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6041;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"bgBlueSmall-1536x720.png\";s:5:\"width\";i:1536;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15537;}}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:{}}}'),(165,35,'_elementor_source_image_hash','f83d8a27d7a9eef7cd6f3a63a58f1115693ab1fb'),(166,36,'_wp_attached_file','2023/07/statistic.png'),(167,36,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:278;s:6:\"height\";i:278;s:4:\"file\";s:21:\"2023/07/statistic.png\";s:8:\"filesize\";i:5148;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"statistic-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9195;}}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:{}}}'),(168,36,'_elementor_source_image_hash','3cb440a34fd1578cfd7c1fee5988b3324ce5ac16'),(169,37,'_wp_attached_file','2023/07/pay_per_click.png'),(170,37,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:278;s:6:\"height\";i:278;s:4:\"file\";s:25:\"2023/07/pay_per_click.png\";s:8:\"filesize\";i:3603;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"pay_per_click-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8867;}}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:{}}}'),(171,37,'_elementor_source_image_hash','8ce7f62105383d9989367e9db0f1d73821613cbb'),(172,38,'_wp_attached_file','2023/07/Keyword.png'),(173,38,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:278;s:6:\"height\";i:278;s:4:\"file\";s:19:\"2023/07/Keyword.png\";s:8:\"filesize\";i:3552;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"Keyword-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8379;}}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:{}}}'),(174,38,'_elementor_source_image_hash','9f0447160ae837aadd851e9c2d383d06440d42ca'),(175,39,'_wp_attached_file','2023/07/Ecommerce.png'),(176,39,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:278;s:6:\"height\";i:278;s:4:\"file\";s:21:\"2023/07/Ecommerce.png\";s:8:\"filesize\";i:4087;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Ecommerce-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8798;}}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:{}}}'),(177,39,'_elementor_source_image_hash','953d43bd0924095214cb033c6e3e8f344d146904'),(178,40,'_wp_attached_file','2023/07/TDV_M86_01.jpg'),(179,40,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1527;s:4:\"file\";s:22:\"2023/07/TDV_M86_01.jpg\";s:8:\"filesize\";i:186852;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"TDV_M86_01-300x239.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:239;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10886;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"TDV_M86_01-1024x814.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:814;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55457;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"TDV_M86_01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5251;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"TDV_M86_01-768x611.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:611;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38239;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"TDV_M86_01-1536x1222.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1222;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92064;}}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:{}}}'),(180,40,'_elementor_source_image_hash','d3a8de9a0c14ebd69fb988cec0ded96419da7538'),(181,41,'_wp_attached_file','2023/07/bgYellowBig.png'),(182,41,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1052;s:4:\"file\";s:23:\"2023/07/bgYellowBig.png\";s:8:\"filesize\";i:10619;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"bgYellowBig-300x164.png\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1408;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"bgYellowBig-1024x561.png\";s:5:\"width\";i:1024;s:6:\"height\";i:561;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5843;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"bgYellowBig-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:289;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"bgYellowBig-768x421.png\";s:5:\"width\";i:768;s:6:\"height\";i:421;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4105;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"bgYellowBig-1536x842.png\";s:5:\"width\";i:1536;s:6:\"height\";i:842;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9710;}}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:{}}}'),(183,41,'_elementor_source_image_hash','697621c0f83091935be453026a094da2ab38031d'),(184,42,'_wp_attached_file','2023/07/successful-company-with-happy-workers-business-mee-C6QWCVG2x.jpg'),(185,42,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:540;s:6:\"height\";i:660;s:4:\"file\";s:72:\"2023/07/successful-company-with-happy-workers-business-mee-C6QWCVG2x.jpg\";s:8:\"filesize\";i:111227;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"successful-company-with-happy-workers-business-mee-C6QWCVG2x-245x300.jpg\";s:5:\"width\";i:245;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17035;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"successful-company-with-happy-workers-business-mee-C6QWCVG2x-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6268;}s:24:\"elementor_custom_540x660\";a:4:{s:4:\"file\";s:124:\"elementor/thumbs/successful-company-with-happy-workers-business-mee-C6QWCVG2x-q97jhq0395m0d5r7vq6vb5oje9io7x9vpzwta9fmdc.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:660;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:{}}}'),(186,42,'_elementor_source_image_hash','59c086bcf1d6af2a475f2f9bc4cd2cfb5a4e1a1d'),(187,43,'_wp_attached_file','2023/07/young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x.jpg'),(188,43,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:540;s:6:\"height\";i:660;s:4:\"file\";s:72:\"2023/07/young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x.jpg\";s:8:\"filesize\";i:113489;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x-245x300.jpg\";s:5:\"width\";i:245;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20708;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7097;}s:24:\"elementor_custom_540x660\";a:4:{s:4:\"file\";s:124:\"elementor/thumbs/young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x-q97jhqxxfznaorpuq8lhvnfzzne1fmdm24karje874.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:660;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:{}}}'),(189,43,'_elementor_source_image_hash','bb6606cb7db938fc2b59fd6e385beffed2c4dee5'),(190,44,'_wp_attached_file','2023/07/african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1.jpg'),(191,44,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:540;s:6:\"height\";i:660;s:4:\"file\";s:74:\"2023/07/african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1.jpg\";s:8:\"filesize\";i:98787;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:74:\"african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1-245x300.jpg\";s:5:\"width\";i:245;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16247;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:74:\"african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6597;}s:24:\"elementor_custom_540x660\";a:4:{s:4:\"file\";s:126:\"elementor/thumbs/african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1-q97jhrvrmtol0dohkr04g57gl19enbhce97s8tcu0w.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:660;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:{}}}'),(192,44,'_elementor_source_image_hash','e33198e758123055608cbdfc09cde6b23e70ea71'),(193,45,'_wp_attached_file','2023/07/smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x.jpg'),(194,45,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:540;s:6:\"height\";i:660;s:4:\"file\";s:72:\"2023/07/smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x.jpg\";s:8:\"filesize\";i:84209;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x-245x300.jpg\";s:5:\"width\";i:245;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12900;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:72:\"smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5549;}s:24:\"elementor_custom_540x660\";a:4:{s:4:\"file\";s:124:\"elementor/thumbs/smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x-q97jhstltnpvbzn4f9er0myx6f4rv0l2qdv9q3bfuo.jpg\";s:5:\"width\";i:540;s:6:\"height\";i:660;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:{}}}'),(195,45,'_elementor_source_image_hash','b2e32221a1f49bd5d47e257bfe18447b41611a06'),(196,46,'_wp_attached_file','2023/07/TDV_M86_02.jpg'),(197,46,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1572;s:4:\"file\";s:22:\"2023/07/TDV_M86_02.jpg\";s:8:\"filesize\";i:186343;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"TDV_M86_02-300x246.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11545;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"TDV_M86_02-1024x838.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:838;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57493;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"TDV_M86_02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5683;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"TDV_M86_02-768x629.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:629;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40010;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"TDV_M86_02-1536x1258.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1258;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92980;}}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:{}}}'),(198,46,'_elementor_source_image_hash','661e6617ba0f7fad97c37ebb28cf9e5f08f9e082'),(199,47,'_wp_attached_file','2023/07/email.png'),(200,47,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:267;s:6:\"height\";i:278;s:4:\"file\";s:17:\"2023/07/email.png\";s:8:\"filesize\";i:6055;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"email-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9229;}}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:{}}}'),(201,47,'_elementor_source_image_hash','32fdabc156b68f9271ca155853c9db64344c1b2b'),(202,48,'_wp_attached_file','2023/07/Social_Media.png'),(203,48,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:320;s:6:\"height\";i:320;s:4:\"file\";s:24:\"2023/07/Social_Media.png\";s:8:\"filesize\";i:9381;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Social_Media-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40441;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Social_Media-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19506;}}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:{}}}'),(204,48,'_elementor_source_image_hash','f5d0c02d2c5e95ce9baec6da1b8968a0e56669e2'),(205,49,'_wp_attached_file','2023/07/TDV_M86_010-1.jpg'),(206,49,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:25:\"2023/07/TDV_M86_010-1.jpg\";s:8:\"filesize\";i:155051;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"TDV_M86_010-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9885;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"TDV_M86_010-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53508;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"TDV_M86_010-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6344;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"TDV_M86_010-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35667;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"TDV_M86_010-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89907;}}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:{}}}'),(207,49,'_elementor_source_image_hash','417795101339156c543218d7a86a8ca22d06e522'),(208,50,'_wp_attached_file','2023/07/TDV_M86_07.jpg'),(209,50,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:22:\"2023/07/TDV_M86_07.jpg\";s:8:\"filesize\";i:124269;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"TDV_M86_07-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8506;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"TDV_M86_07-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45500;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"TDV_M86_07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5259;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"TDV_M86_07-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30593;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"TDV_M86_07-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76804;}}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:{}}}'),(210,50,'_elementor_source_image_hash','c40f6d6c80464528e4aa03439d299619aa152a78'),(211,51,'_wp_attached_file','2023/07/TDV_M86_09.jpg'),(212,51,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:22:\"2023/07/TDV_M86_09.jpg\";s:8:\"filesize\";i:152613;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"TDV_M86_09-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9115;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"TDV_M86_09-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50228;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"TDV_M86_09-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5800;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"TDV_M86_09-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34657;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"TDV_M86_09-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87667;}}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:{}}}'),(213,51,'_elementor_source_image_hash','d8dbe25d65e801a841f67439507d009b56f3a05e'),(214,52,'_wp_attached_file','2023/07/TDV_M86_03-1.jpg'),(215,52,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:24:\"2023/07/TDV_M86_03-1.jpg\";s:8:\"filesize\";i:155922;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"TDV_M86_03-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9253;}s:5:\"large\";a:5:{s:4:\"file\";s:25:\"TDV_M86_03-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53158;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"TDV_M86_03-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5859;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"TDV_M86_03-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35309;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:26:\"TDV_M86_03-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89773;}}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:{}}}'),(216,52,'_elementor_source_image_hash','44dfe520b84ac4720d300c96150ece123aaffc03'),(217,53,'_elementor_edit_mode','builder'),(218,53,'_elementor_template_type','page'),(219,53,'_elementor_version','3.14.1'),(220,53,'_elementor_data','[{\"id\":\"73e3ca87\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\",\"background_image\":{\"id\":\"19\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Home3-bg1.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"547c3319\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"z_index\":2,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1305eee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best-Rated Global Digital Marketing Agency\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5630000000000002,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.9380000000000002,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.25,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.0880000000000001,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7537711e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim.\",\"_margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=74ac489\"},\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2816cdb2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"\",\"background_color\":\"\",\"hover_color\":\"\",\"button_background_hover_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"hover_animation\":\"wobble-top\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":27,\"blur\":40,\"spread\":12,\"color\":\"rgba(34, 39.00000000000001, 49.00000000000001, 0.14901960784313725)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1ce0c607\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"globals\\/colors?id=89bc7fb\",\"background_color\":\"globals\\/colors?id=faadce6\",\"hover_color\":\"globals\\/colors?id=89bc7fb\",\"button_background_hover_color\":\"globals\\/colors?id=6134d38\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"hover_animation\":\"wobble-top\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":27,\"blur\":40,\"spread\":12,\"color\":\"rgba(34, 39.00000000000001, 49.00000000000001, 0.14901960784313725)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3c2d3461\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"71\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6be340ec\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":636,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_background_bg_width\":{\"unit\":\"px\",\"size\":778,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":778,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_size_tablet\":\"cover\",\"_background_size_mobile\":\"cover\",\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":330,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"hide_mobile\":\"hidden-phone\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b767091\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"-648\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-525\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"129\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"10\",\"bottom\":\"59\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Home3-bg1.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30029929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"top\",\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false},{\"id\":\"1a91b924\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"71\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ba3e007\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":636,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_03.jpg\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_background_bg_width\":{\"unit\":\"px\",\"size\":778,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":778,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_size_tablet\":\"cover\",\"_background_size_mobile\":\"cover\",\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":330,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bed4d37\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"123\",\"right\":\"30\",\"bottom\":\"106\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"54\",\"right\":\"20\",\"bottom\":\"28\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/bgBlueSmall.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":57,\"end\":87}},\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3cba6d71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31a55b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE PROVIDE DIGITAL SERVICES\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=451e8fd\",\"title_color\":\"globals\\/colors?id=6018f3f\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69433000\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"332c3924\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"64\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4713b516\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unique Solutions For Your Business\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c64784d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ce1fde4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation adipiscing elit, sed do eiusmod tempor incididunt.\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"20c5f4c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ut enim ad minim veniam, quis nostrud exercitation adipiscing elit, sed do eiusmod tempor incididunt.\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13b6ee82\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"left\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"37\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7eeae975\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"55184e99\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/statistic.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"64e8178e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Organic Search (SEO)\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=6b9ab35\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a385b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis und\\nnatus error sit voluptatem.\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d1630c0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=6134d38\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=faadce6\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#397CF2\",\"background_color\":\"#FFFFFF00\",\"hover_color\":\"#F8BC3E\",\"button_background_hover_color\":\"#FFFFFF00\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2297132\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"682a0859\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/pay_per_click.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad3c2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pay-Per-Click (PPC)\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"268f7d7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis und\\nnatus error sit voluptatem.\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1373d856\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=6134d38\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=faadce6\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#397CF2\",\"background_color\":\"#FFFFFF00\",\"hover_color\":\"#F8BC3E\",\"button_background_hover_color\":\"#FFFFFF00\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6cf0cab0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"638e066f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Keyword.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73fda8b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Custom Solutions\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eac4e20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis und\\nnatus error sit voluptatem.\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39962ae7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=6134d38\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=faadce6\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#397CF2\",\"background_color\":\"#FFFFFF00\",\"hover_color\":\"#F8BC3E\",\"button_background_hover_color\":\"#FFFFFF00\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4a3af36a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b25d653\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Ecommerce.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d6c052\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazon SEO\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28df8b78\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis und\\nnatus error sit voluptatem.\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"669c4440\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=6134d38\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=faadce6\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#397CF2\",\"background_color\":\"#FFFFFF00\",\"hover_color\":\"#F8BC3E\",\"button_background_hover_color\":\"#FFFFFF00\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4bc9a8fb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"116\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"78\",\"right\":\"30\",\"bottom\":\"69\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"71\",\"right\":\"20\",\"bottom\":\"59\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"overflow\":\"hidden\",\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"structure\":\"20\",\"premium_eq_height_switcher\":\"\",\"premium_eq_height_type\":\"widget\",\"premium_eq_height_target\":\"\",\"premium_eq_height_custom_target\":\"\",\"premium_eq_height_enable_on\":[\"desktop\",\"tablet\",\"mobile\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"606875ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.07,\"_inline_size_tablet\":40,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position_tablet\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63ad4f91\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":498,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_01.jpg\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"initial\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":15,\"end\":85}},\"_background_hover_background\":\"classic\",\"space_mobile\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"px\",\"size\":610,\"sizes\":[]},\"_background_size_tablet\":\"cover\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"55663872\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.889000000000003,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"44\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60,\"content_position\":\"top\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fe2b239\",\"elType\":\"widget\",\"settings\":{\"title\":\"integrated approach\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=451e8fd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1eddee33\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Client Oriented Marketing Services\",\"_margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55f7408d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation adipiscing elit, sed do eiusmod.\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"74c39455\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"_margin\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=faadce6\",\"button_background_hover_color\":\"globals\\/colors?id=6134d38\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"wobble-top\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2daff371\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"123\",\"right\":\"30\",\"bottom\":\"118\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"20\",\"bottom\":\"51\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/bgYellowBig.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":22,\"end\":48}},\"background_motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a4a70b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cd5a759\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":770,\"sizes\":[]},\"text_align\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"689f56ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4cffe6f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leadership\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=451e8fd\",\"title_color\":\"globals\\/colors?id=6018f3f\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fb3e672\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Team\",\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54b75fa5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, xercitation ullamco.\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=74ac489\",\"text_color\":\"globals\\/colors?id=01cddfc\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"58ef0213\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"premium_eq_height_switcher\":\"\",\"premium_eq_height_type\":\"widget\",\"premium_eq_height_target\":\"\",\"premium_eq_height_custom_target\":\"\",\"premium_eq_height_enable_on\":[\"desktop\",\"tablet\",\"mobile\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ffaee14\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d966fa7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/successful-company-with-happy-workers-business-mee-C6QWCVG2x.jpg\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"540\",\"height\":\"660\"},\"title_text\":\"Richard Brexton\",\"description_text\":\"Financial Director\",\"image_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"__globals__\":{\"description_typography_typography\":\"globals\\/typography?id=e52ced7\",\"description_color\":\"globals\\/colors?id=32f2e26\",\"title_typography_typography\":\"globals\\/typography?id=369ac72\",\"title_color\":\"globals\\/colors?id=primary\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_size\":\"h5\",\"image_space_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5857949c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b2341fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x.jpg\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"540\",\"height\":\"660\"},\"title_text\":\"Anna Dowson\",\"description_text\":\"Chief Manager\",\"image_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"__globals__\":{\"description_typography_typography\":\"globals\\/typography?id=e52ced7\",\"description_color\":\"globals\\/colors?id=32f2e26\",\"title_typography_typography\":\"globals\\/typography?id=369ac72\",\"title_color\":\"globals\\/colors?id=primary\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_size\":\"h5\",\"image_space_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4d99d0da\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3bf3533f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1.jpg\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"540\",\"height\":\"660\"},\"title_text\":\"Chad Franklin\",\"description_text\":\"Creative Director\",\"image_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"__globals__\":{\"description_typography_typography\":\"globals\\/typography?id=e52ced7\",\"description_color\":\"globals\\/colors?id=32f2e26\",\"title_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_size\":\"h5\",\"image_space_mobile\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"71e94994\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1fde93d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x.jpg\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"540\",\"height\":\"660\"},\"title_text\":\"Laura Jones\",\"description_text\":\"SEO Expert\",\"image_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"__globals__\":{\"description_typography_typography\":\"globals\\/typography?id=e52ced7\",\"description_color\":\"globals\\/colors?id=32f2e26\",\"title_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_size\":\"h5\",\"image_space_mobile\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2216ed6f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"30\",\"bottom\":\"128\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"30\",\"bottom\":\"61\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"20\",\"bottom\":\"53\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"overflow\":\"hidden\",\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"structure\":\"20\",\"premium_eq_height_switcher\":\"\",\"premium_eq_height_type\":\"widget\",\"premium_eq_height_target\":\"\",\"premium_eq_height_custom_target\":\"\",\"premium_eq_height_enable_on\":[\"desktop\",\"tablet\",\"mobile\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a5ac263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.07,\"_inline_size_tablet\":40,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position_tablet\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d85947d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":498,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"46\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_02.jpg\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"initial\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":15,\"end\":85}},\"_background_hover_background\":\"classic\",\"space_mobile\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"px\",\"size\":610,\"sizes\":[]},\"_background_size_tablet\":\"cover\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7b25cd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.889000000000003,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"44\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60,\"content_position\":\"top\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"13cbcd69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Individual Approach\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=451e8fd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d8c846d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Just Taking Care Of Your Business\",\"_margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2783302c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim.\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"456e32f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"42\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7bc82b78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1005734a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"47\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/email.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2699a1d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Marketing\",\"header_size\":\"div\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e9e764a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"695a827f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.331000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a7f1564\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Social_Media.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72a1586f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Branding\",\"header_size\":\"div\",\"_margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e9e764a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4aa8d43b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"493ee36b\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"123\",\"right\":\"30\",\"bottom\":\"128\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"30\",\"bottom\":\"69\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"54\",\"right\":\"20\",\"bottom\":\"55\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/bgBlueSmall.png\"},\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a1394d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54df8461\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":770,\"sizes\":[]},\"text_align\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61a9052b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8a79f72\",\"elType\":\"widget\",\"settings\":{\"title\":\"package offer\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=451e8fd\",\"title_color\":\"globals\\/colors?id=6018f3f\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11a9882d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Special Offers\",\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42c0edf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"premium_eq_height_switcher\":\"\",\"premium_eq_height_type\":\"widget\",\"premium_eq_height_target\":\"\",\"premium_eq_height_custom_target\":\"\",\"premium_eq_height_enable_on\":[\"desktop\",\"tablet\",\"mobile\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7de6392e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fb31174\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"49\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_010-1.jpg\"},\"_background_position\":\"top center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"17569215\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20f03d9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"50\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_07.jpg\"},\"_background_position\":\"top center\",\"_background_position_mobile\":\"top center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29434fff\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"29\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"premium_eq_height_switcher\":\"\",\"premium_eq_height_type\":\"widget\",\"premium_eq_height_target\":\"\",\"premium_eq_height_custom_target\":\"\",\"premium_eq_height_enable_on\":[\"desktop\",\"tablet\",\"mobile\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8646853\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"450081b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_09.jpg\"},\"_background_position\":\"top center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6d17ebb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3df250a5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_03-1.jpg\"},\"_background_position\":\"top center\",\"_background_position_mobile\":\"top center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(221,54,'_elementor_edit_mode','builder'),(222,54,'_elementor_template_type','page'),(223,54,'_elementor_version','3.14.1'),(224,54,'_elementor_data','[{\"id\":\"73e3ca87\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\",\"background_image\":{\"id\":\"19\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Home3-bg1.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"547c3319\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"z_index\":2,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1305eee8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best-Rated Global Digital Marketing Agency\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5630000000000002,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.9380000000000002,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.25,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.0880000000000001,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7537711e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim.\",\"_margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=74ac489\"},\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2816cdb2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"\",\"background_color\":\"\",\"hover_color\":\"\",\"button_background_hover_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"hover_animation\":\"wobble-top\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":27,\"blur\":40,\"spread\":12,\"color\":\"rgba(34, 39.00000000000001, 49.00000000000001, 0.14901960784313725)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"1ce0c607\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"globals\\/colors?id=89bc7fb\",\"background_color\":\"globals\\/colors?id=faadce6\",\"hover_color\":\"globals\\/colors?id=89bc7fb\",\"button_background_hover_color\":\"globals\\/colors?id=6134d38\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"hover_animation\":\"wobble-top\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":27,\"blur\":40,\"spread\":12,\"color\":\"rgba(34, 39.00000000000001, 49.00000000000001, 0.14901960784313725)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"3c2d3461\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"71\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6be340ec\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":636,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_background_bg_width\":{\"unit\":\"px\",\"size\":778,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":778,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_size_tablet\":\"cover\",\"_background_size_mobile\":\"cover\",\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":330,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"hide_mobile\":\"hidden-phone\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2b767091\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"-648\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-525\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"129\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"10\",\"bottom\":\"59\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Home3-bg1.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30029929\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"top\",\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false},{\"id\":\"1a91b924\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"71\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ba3e007\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":636,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_03.jpg\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_background_bg_width\":{\"unit\":\"px\",\"size\":778,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":778,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_size_tablet\":\"cover\",\"_background_size_mobile\":\"cover\",\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":330,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bed4d37\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"123\",\"right\":\"30\",\"bottom\":\"106\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"54\",\"right\":\"20\",\"bottom\":\"28\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/bgBlueSmall.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":57,\"end\":87}},\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3cba6d71\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31a55b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE PROVIDE DIGITAL SERVICES\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=451e8fd\",\"title_color\":\"globals\\/colors?id=6018f3f\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"69433000\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"332c3924\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"64\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4713b516\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unique Solutions For Your Business\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"c64784d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ce1fde4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation adipiscing elit, sed do eiusmod tempor incididunt.\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"20c5f4c4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ut enim ad minim veniam, quis nostrud exercitation adipiscing elit, sed do eiusmod tempor incididunt.\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"13b6ee82\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"left\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"37\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7eeae975\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"55184e99\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/statistic.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"64e8178e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Organic Search (SEO)\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=6b9ab35\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a385b1c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis und\\nnatus error sit voluptatem.\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d1630c0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=6134d38\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=faadce6\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#397CF2\",\"background_color\":\"#FFFFFF00\",\"hover_color\":\"#F8BC3E\",\"button_background_hover_color\":\"#FFFFFF00\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2297132\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"682a0859\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/pay_per_click.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ad3c2b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pay-Per-Click (PPC)\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"268f7d7b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis und\\nnatus error sit voluptatem.\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1373d856\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=6134d38\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=faadce6\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#397CF2\",\"background_color\":\"#FFFFFF00\",\"hover_color\":\"#F8BC3E\",\"button_background_hover_color\":\"#FFFFFF00\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"6cf0cab0\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"638e066f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Keyword.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"73fda8b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Custom Solutions\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eac4e20\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis und\\nnatus error sit voluptatem.\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39962ae7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=6134d38\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=faadce6\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#397CF2\",\"background_color\":\"#FFFFFF00\",\"hover_color\":\"#F8BC3E\",\"button_background_hover_color\":\"#FFFFFF00\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"4a3af36a\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b25d653\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Ecommerce.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49d6c052\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazon SEO\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28df8b78\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis und\\nnatus error sit voluptatem.\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"669c4440\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=6134d38\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=faadce6\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#397CF2\",\"background_color\":\"#FFFFFF00\",\"hover_color\":\"#F8BC3E\",\"button_background_hover_color\":\"#FFFFFF00\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4bc9a8fb\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"116\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"78\",\"right\":\"30\",\"bottom\":\"69\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"71\",\"right\":\"20\",\"bottom\":\"59\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"overflow\":\"hidden\",\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"structure\":\"20\",\"premium_eq_height_switcher\":\"\",\"premium_eq_height_type\":\"widget\",\"premium_eq_height_target\":\"\",\"premium_eq_height_custom_target\":\"\",\"premium_eq_height_enable_on\":[\"desktop\",\"tablet\",\"mobile\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"606875ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.07,\"_inline_size_tablet\":40,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position_tablet\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63ad4f91\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":498,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_01.jpg\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"initial\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":15,\"end\":85}},\"_background_hover_background\":\"classic\",\"space_mobile\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"px\",\"size\":610,\"sizes\":[]},\"_background_size_tablet\":\"cover\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"55663872\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.889000000000003,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"44\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60,\"content_position\":\"top\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fe2b239\",\"elType\":\"widget\",\"settings\":{\"title\":\"integrated approach\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=451e8fd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1eddee33\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Client Oriented Marketing Services\",\"_margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55f7408d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation adipiscing elit, sed do eiusmod.\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"74c39455\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"_margin\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=faadce6\",\"button_background_hover_color\":\"globals\\/colors?id=6134d38\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"wobble-top\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2daff371\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"123\",\"right\":\"30\",\"bottom\":\"118\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"20\",\"bottom\":\"51\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/bgYellowBig.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":22,\"end\":48}},\"background_motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a4a70b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cd5a759\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":770,\"sizes\":[]},\"text_align\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"689f56ea\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4cffe6f1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leadership\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=451e8fd\",\"title_color\":\"globals\\/colors?id=6018f3f\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5fb3e672\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Team\",\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"54b75fa5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, xercitation ullamco.\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=74ac489\",\"text_color\":\"globals\\/colors?id=01cddfc\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"58ef0213\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"premium_eq_height_switcher\":\"\",\"premium_eq_height_type\":\"widget\",\"premium_eq_height_target\":\"\",\"premium_eq_height_custom_target\":\"\",\"premium_eq_height_enable_on\":[\"desktop\",\"tablet\",\"mobile\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4ffaee14\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d966fa7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/successful-company-with-happy-workers-business-mee-C6QWCVG2x.jpg\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"540\",\"height\":\"660\"},\"title_text\":\"Richard Brexton\",\"description_text\":\"Financial Director\",\"image_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"__globals__\":{\"description_typography_typography\":\"globals\\/typography?id=e52ced7\",\"description_color\":\"globals\\/colors?id=32f2e26\",\"title_typography_typography\":\"globals\\/typography?id=369ac72\",\"title_color\":\"globals\\/colors?id=primary\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_size\":\"h5\",\"image_space_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"5857949c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b2341fd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x.jpg\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"540\",\"height\":\"660\"},\"title_text\":\"Anna Dowson\",\"description_text\":\"Chief Manager\",\"image_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"__globals__\":{\"description_typography_typography\":\"globals\\/typography?id=e52ced7\",\"description_color\":\"globals\\/colors?id=32f2e26\",\"title_typography_typography\":\"globals\\/typography?id=369ac72\",\"title_color\":\"globals\\/colors?id=primary\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_size\":\"h5\",\"image_space_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"4d99d0da\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3bf3533f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1.jpg\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"540\",\"height\":\"660\"},\"title_text\":\"Chad Franklin\",\"description_text\":\"Creative Director\",\"image_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"__globals__\":{\"description_typography_typography\":\"globals\\/typography?id=e52ced7\",\"description_color\":\"globals\\/colors?id=32f2e26\",\"title_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_size\":\"h5\",\"image_space_mobile\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"71e94994\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1fde93d1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x.jpg\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"540\",\"height\":\"660\"},\"title_text\":\"Laura Jones\",\"description_text\":\"SEO Expert\",\"image_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"__globals__\":{\"description_typography_typography\":\"globals\\/typography?id=e52ced7\",\"description_color\":\"globals\\/colors?id=32f2e26\",\"title_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_size\":\"h5\",\"image_space_mobile\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2216ed6f\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"30\",\"bottom\":\"128\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"30\",\"bottom\":\"61\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"20\",\"bottom\":\"53\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"overflow\":\"hidden\",\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"structure\":\"20\",\"premium_eq_height_switcher\":\"\",\"premium_eq_height_type\":\"widget\",\"premium_eq_height_target\":\"\",\"premium_eq_height_custom_target\":\"\",\"premium_eq_height_enable_on\":[\"desktop\",\"tablet\",\"mobile\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a5ac263\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.07,\"_inline_size_tablet\":40,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position_tablet\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d85947d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":498,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"46\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_02.jpg\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"initial\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":15,\"end\":85}},\"_background_hover_background\":\"classic\",\"space_mobile\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"px\",\"size\":610,\"sizes\":[]},\"_background_size_tablet\":\"cover\",\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"7b25cd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.889000000000003,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"44\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60,\"content_position\":\"top\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"13cbcd69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Individual Approach\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=451e8fd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d8c846d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Just Taking Care Of Your Business\",\"_margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2783302c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim.\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"456e32f0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"42\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7bc82b78\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1005734a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"47\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/email.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2699a1d9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Marketing\",\"header_size\":\"div\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e9e764a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"695a827f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.331000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a7f1564\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Social_Media.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"align\":\"left\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"72a1586f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Branding\",\"header_size\":\"div\",\"_margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e9e764a\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"4aa8d43b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"493ee36b\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"123\",\"right\":\"30\",\"bottom\":\"128\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"30\",\"bottom\":\"69\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"54\",\"right\":\"20\",\"bottom\":\"55\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/bgBlueSmall.png\"},\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a1394d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"54df8461\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":770,\"sizes\":[]},\"text_align\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61a9052b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8a79f72\",\"elType\":\"widget\",\"settings\":{\"title\":\"package offer\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=451e8fd\",\"title_color\":\"globals\\/colors?id=6018f3f\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11a9882d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Special Offers\",\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42c0edf1\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"premium_eq_height_switcher\":\"\",\"premium_eq_height_type\":\"widget\",\"premium_eq_height_target\":\"\",\"premium_eq_height_custom_target\":\"\",\"premium_eq_height_enable_on\":[\"desktop\",\"tablet\",\"mobile\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7de6392e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fb31174\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"49\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_010-1.jpg\"},\"_background_position\":\"top center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"17569215\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20f03d9\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"50\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_07.jpg\"},\"_background_position\":\"top center\",\"_background_position_mobile\":\"top center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"29434fff\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"29\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"premium_eq_height_switcher\":\"\",\"premium_eq_height_type\":\"widget\",\"premium_eq_height_target\":\"\",\"premium_eq_height_custom_target\":\"\",\"premium_eq_height_enable_on\":[\"desktop\",\"tablet\",\"mobile\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8646853\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"450081b1\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_09.jpg\"},\"_background_position\":\"top center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"6d17ebb9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3df250a5\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_03-1.jpg\"},\"_background_position\":\"top center\",\"_background_position_mobile\":\"top center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(225,53,'_elementor_page_assets','a:1:{s:6:\"styles\";a:67:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";}}'),(226,53,'_wp_page_template','default'),(227,53,'envato_tk_source_kit','6'),(228,53,'envato_tk_source_index','5'),(229,55,'_wp_page_template','default'),(230,55,'_elementor_edit_mode','builder'),(231,55,'_elementor_template_type','wp-page'),(232,55,'_elementor_version','3.14.1'),(233,55,'_elementor_data','[{\"id\":\"3101a9c0\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\",\"background_image\":{\"id\":\"19\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Home3-bg1.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]}},\"elements\":[{\"id\":\"3b813df0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"z_index\":2},\"elements\":[{\"id\":\"20ff1b92\",\"elType\":\"widget\",\"settings\":{\"title\":\"your Health care digital marketing agency\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.5630000000000002,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.9380000000000002,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"em\",\"size\":2.25,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_text_transform\":\"capitalize\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.0880000000000001,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59eb8dab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence and patient engagement with our expert digital marketing strategies tailored specifically for the healthcare industry.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=74ac489\"},\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"65cd31d1\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"\",\"background_color\":\"\",\"hover_color\":\"\",\"button_background_hover_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"hover_animation\":\"wobble-top\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":27,\"blur\":40,\"spread\":12,\"color\":\"rgba(34, 39.00000000000001, 49.00000000000001, 0.14901960784313725)\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"2452edf6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"rem\",\"size\":0.875,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"rem\",\"size\":\"\",\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_text_transform\":\"uppercase\",\"typography_font_style\":\"normal\",\"typography_text_decoration\":\"none\",\"typography_line_height\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"text_padding\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"text_padding_tablet\":{\"unit\":\"em\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"7\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_element_width_mobile\":\"auto\",\"__globals__\":{\"typography_typography\":\"\",\"button_text_color\":\"globals\\/colors?id=89bc7fb\",\"background_color\":\"globals\\/colors?id=faadce6\",\"hover_color\":\"globals\\/colors?id=89bc7fb\",\"button_background_hover_color\":\"globals\\/colors?id=6134d38\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"hover_animation\":\"wobble-top\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":27,\"blur\":40,\"spread\":12,\"color\":\"rgba(34, 39.00000000000001, 49.00000000000001, 0.14901960784313725)\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8fee008\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"71\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f974d47\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":636,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_background_bg_width\":{\"unit\":\"px\",\"size\":778,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":778,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_size_tablet\":\"cover\",\"_background_size_mobile\":\"cover\",\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":330,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"20279dab\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"-648\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-525\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"30\",\"bottom\":\"129\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"44\",\"right\":\"20\",\"bottom\":\"60\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"10\",\"bottom\":\"59\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\",\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"19\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Home3-bg1.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.5,\"sizes\":[]}},\"elements\":[{\"id\":\"7065d247\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"top\",\"content_position_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":false},{\"id\":\"7d98fe8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"71\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7814733d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":636,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"34\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_03.jpg\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"contain\",\"_background_bg_width\":{\"unit\":\"px\",\"size\":778,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"px\",\"size\":778,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"space_mobile\":{\"unit\":\"px\",\"size\":300,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_size_tablet\":\"cover\",\"_background_size_mobile\":\"cover\",\"_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":450,\"sizes\":[]},\"_element_width_tablet\":\"inherit\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":330,\"sizes\":[]},\"_animation\":\"fadeInRight\",\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1601c3d7\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"123\",\"right\":\"30\",\"bottom\":\"106\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"73\",\"right\":\"30\",\"bottom\":\"35\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"54\",\"right\":\"20\",\"bottom\":\"28\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/bgBlueSmall.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":57,\"end\":87}},\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"5424e14c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19bacebc\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE PROVIDE DIGITAL SERVICES\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=451e8fd\",\"title_color\":\"globals\\/colors?id=6018f3f\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2b27f3b6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"19\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d2821a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"64\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"396079be\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unique Solutions For Your Business\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"3f7537fb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"19c457df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation adipiscing elit, sed do eiusmod tempor incididunt.\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2220b43e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Ut enim ad minim veniam, quis nostrud exercitation adipiscing elit, sed do eiusmod tempor incididunt.\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7cf43eaa\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_align\":\"left\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"37\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5281c38d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"40202343\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/statistic.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"24467442\",\"elType\":\"widget\",\"settings\":{\"title\":\"Organic Search (SEO)\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=6b9ab35\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33b96462\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis und\\nnatus error sit voluptatem.\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f43b8fb\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=6134d38\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=faadce6\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#397CF2\",\"background_color\":\"#FFFFFF00\",\"hover_color\":\"#F8BC3E\",\"button_background_hover_color\":\"#FFFFFF00\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"2b96ea92\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"64db3695\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/pay_per_click.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"745b5da9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pay-Per-Click (PPC)\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65f5176c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis und\\nnatus error sit voluptatem.\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"290f65a4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=6134d38\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=faadce6\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#397CF2\",\"background_color\":\"#FFFFFF00\",\"hover_color\":\"#F8BC3E\",\"button_background_hover_color\":\"#FFFFFF00\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"560c61f\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4c1ffd80\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Keyword.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"20ca437a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Custom Solutions\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4222b885\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis und\\nnatus error sit voluptatem.\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7312a233\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=6134d38\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=faadce6\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#397CF2\",\"background_color\":\"#FFFFFF00\",\"hover_color\":\"#F8BC3E\",\"button_background_hover_color\":\"#FFFFFF00\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"5447a10b\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7c5604c6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Ecommerce.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":62,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6a7d2dec\",\"elType\":\"widget\",\"settings\":{\"title\":\"Amazon SEO\",\"header_size\":\"h5\",\"_margin\":{\"unit\":\"px\",\"top\":\"43\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"33\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3897191a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sed ut perspiciatis unde omnis und\\nnatus error sit voluptatem.\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"669b5a9d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Read More\",\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"__globals__\":{\"button_text_color\":\"globals\\/colors?id=6134d38\",\"background_color\":\"\",\"hover_color\":\"globals\\/colors?id=faadce6\",\"button_background_hover_color\":\"\"},\"button_text_color\":\"#397CF2\",\"background_color\":\"#FFFFFF00\",\"hover_color\":\"#F8BC3E\",\"button_background_hover_color\":\"#FFFFFF00\",\"button_box_shadow_box_shadow_type\":\"yes\",\"button_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0)\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"201e9cca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"116\",\"right\":\"30\",\"bottom\":\"120\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"78\",\"right\":\"30\",\"bottom\":\"69\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"71\",\"right\":\"20\",\"bottom\":\"59\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"overflow\":\"hidden\",\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"structure\":\"20\",\"premium_eq_height_switcher\":\"\",\"premium_eq_height_type\":\"widget\",\"premium_eq_height_target\":\"\",\"premium_eq_height_custom_target\":\"\",\"premium_eq_height_enable_on\":[\"desktop\",\"tablet\",\"mobile\"]},\"elements\":[{\"id\":\"789de7de\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.07,\"_inline_size_tablet\":40,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position_tablet\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"399b586f\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":498,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"40\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_01.jpg\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"initial\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":15,\"end\":85}},\"_background_hover_background\":\"classic\",\"space_mobile\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"px\",\"size\":610,\"sizes\":[]},\"_background_size_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"2cdf9da\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.889000000000003,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"44\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60,\"content_position\":\"top\"},\"elements\":[{\"id\":\"7a060416\",\"elType\":\"widget\",\"settings\":{\"title\":\"integrated approach\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=451e8fd\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53d947c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Offer Client Oriented Marketing Services\",\"_margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c9e4a4e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation adipiscing elit, sed do eiusmod.\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6f98e82d\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"_margin\":{\"unit\":\"px\",\"top\":\"41\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":500,\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=faadce6\",\"button_background_hover_color\":\"globals\\/colors?id=6134d38\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"wobble-top\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3e617dbe\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"123\",\"right\":\"30\",\"bottom\":\"118\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"30\",\"bottom\":\"60\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"53\",\"right\":\"20\",\"bottom\":\"51\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/bgYellowBig.png\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_motion_fx_translateY_direction\":\"negative\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":0.59999999999999998,\"sizes\":[]},\"background_motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":22,\"end\":48}},\"background_motion_fx_translateX_speed\":{\"unit\":\"px\",\"size\":1.5,\"sizes\":[]},\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_effect\":\"yes\"},\"elements\":[{\"id\":\"791df65\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"79177ba8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":770,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[{\"id\":\"30220c60\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e486081\",\"elType\":\"widget\",\"settings\":{\"title\":\"Leadership\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=451e8fd\",\"title_color\":\"globals\\/colors?id=6018f3f\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"47d5962b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Learn About Our Team\",\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5129d09b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, xercitation ullamco.\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=74ac489\",\"text_color\":\"globals\\/colors?id=01cddfc\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2f52c6c6\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"32\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"premium_eq_height_switcher\":\"\",\"premium_eq_height_type\":\"widget\",\"premium_eq_height_target\":\"\",\"premium_eq_height_custom_target\":\"\",\"premium_eq_height_enable_on\":[\"desktop\",\"tablet\",\"mobile\"]},\"elements\":[{\"id\":\"13b2c260\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"22\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1a32b6cd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/successful-company-with-happy-workers-business-mee-C6QWCVG2x.jpg\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"540\",\"height\":\"660\"},\"title_text\":\"Richard Brexton\",\"description_text\":\"Financial Director\",\"image_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"__globals__\":{\"description_typography_typography\":\"globals\\/typography?id=e52ced7\",\"description_color\":\"globals\\/colors?id=32f2e26\",\"title_typography_typography\":\"globals\\/typography?id=369ac72\",\"title_color\":\"globals\\/colors?id=primary\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_size\":\"h5\",\"image_space_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"2b7264d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"8\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"47f9cc5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x.jpg\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"540\",\"height\":\"660\"},\"title_text\":\"Anna Dowson\",\"description_text\":\"Chief Manager\",\"image_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"__globals__\":{\"description_typography_typography\":\"globals\\/typography?id=e52ced7\",\"description_color\":\"globals\\/colors?id=32f2e26\",\"title_typography_typography\":\"globals\\/typography?id=369ac72\",\"title_color\":\"globals\\/colors?id=primary\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_size\":\"h5\",\"image_space_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"beef443\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"8\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6413a2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1.jpg\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"540\",\"height\":\"660\"},\"title_text\":\"Chad Franklin\",\"description_text\":\"Creative Director\",\"image_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"__globals__\":{\"description_typography_typography\":\"globals\\/typography?id=e52ced7\",\"description_color\":\"globals\\/colors?id=32f2e26\",\"title_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_size\":\"h5\",\"image_space_mobile\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true},{\"id\":\"42a9b9d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"22\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1db49253\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x.jpg\"},\"thumbnail_size\":\"custom\",\"thumbnail_custom_dimension\":{\"width\":\"540\",\"height\":\"660\"},\"title_text\":\"Laura Jones\",\"description_text\":\"SEO Expert\",\"image_space\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"image_size\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"title_bottom_space\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":400,\"__globals__\":{\"description_typography_typography\":\"globals\\/typography?id=e52ced7\",\"description_color\":\"globals\\/colors?id=32f2e26\",\"title_typography_typography\":\"\",\"title_color\":\"globals\\/colors?id=primary\"},\"image_space_tablet\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"title_bottom_space_tablet\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_size\":\"h5\",\"image_space_mobile\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"title_bottom_space_mobile\":{\"unit\":\"px\",\"size\":6,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a2de413\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"121\",\"right\":\"30\",\"bottom\":\"128\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"66\",\"right\":\"30\",\"bottom\":\"61\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"62\",\"right\":\"20\",\"bottom\":\"53\",\"left\":\"20\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"overflow\":\"hidden\",\"background_position\":\"center right\",\"background_repeat\":\"no-repeat\",\"background_size\":\"initial\",\"background_bg_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"structure\":\"20\",\"premium_eq_height_switcher\":\"\",\"premium_eq_height_type\":\"widget\",\"premium_eq_height_target\":\"\",\"premium_eq_height_custom_target\":\"\",\"premium_eq_height_enable_on\":[\"desktop\",\"tablet\",\"mobile\"]},\"elements\":[{\"id\":\"565e0ffa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.07,\"_inline_size_tablet\":40,\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"45\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position_tablet\":\"center\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"33114bc2\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":498,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":260,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInLeft\",\"_animation_tablet\":\"fadeInUp\",\"_animation_mobile\":\"fadeInUp\",\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"46\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_02.jpg\"},\"_background_position\":\"center center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"initial\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"7\",\"bottom\":\"7\",\"left\":\"7\",\"isLinked\":true},\"motion_fx_translateY_affectedRange\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":15,\"end\":85}},\"_background_hover_background\":\"classic\",\"space_mobile\":{\"unit\":\"px\",\"size\":255,\"sizes\":[]},\"_background_xpos\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"_background_ypos\":{\"unit\":\"%\",\"size\":51,\"sizes\":[]},\"_background_bg_width\":{\"unit\":\"px\",\"size\":610,\"sizes\":[]},\"_background_size_tablet\":\"cover\"},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"6821776e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.889000000000003,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"58\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"44\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position_tablet\":\"top\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":60,\"content_position\":\"top\"},\"elements\":[{\"id\":\"41c6feeb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Individual Approach\",\"header_size\":\"h6\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=451e8fd\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d77aa30\",\"elType\":\"widget\",\"settings\":{\"title\":\"Just Taking Care Of Your Business\",\"_margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"32ae785\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim.\",\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":300,\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1b26672\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"42\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"22\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2aa03a13\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":25,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"42321653\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"47\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/email.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4818e69d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Marketing\",\"header_size\":\"div\",\"_margin\":{\"unit\":\"px\",\"top\":\"23\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e9e764a\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"1c4a07c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":41.331000000000003,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"57c211d6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Social_Media.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"space\":{\"unit\":\"px\",\"size\":63,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"align\":\"left\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"49df5106\",\"elType\":\"widget\",\"settings\":{\"title\":\"Branding\",\"header_size\":\"div\",\"_margin\":{\"unit\":\"px\",\"top\":\"26\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=e9e764a\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"2273a517\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"273f81a5\",\"elType\":\"section\",\"settings\":{\"overflow\":\"hidden\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"123\",\"right\":\"30\",\"bottom\":\"128\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"65\",\"right\":\"30\",\"bottom\":\"69\",\"left\":\"30\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"54\",\"right\":\"20\",\"bottom\":\"55\",\"left\":\"20\",\"isLinked\":false},\"background_background\":\"classic\",\"background_image\":{\"id\":\"35\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/bgBlueSmall.png\"},\"background_motion_fx_motion_fx_mouse\":\"yes\",\"background_motion_fx_mouseTrack_effect\":\"yes\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"3e205771\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d054864\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":770,\"sizes\":[]},\"text_align\":\"center\"},\"elements\":[{\"id\":\"a318825\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"265262de\",\"elType\":\"widget\",\"settings\":{\"title\":\"package offer\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=451e8fd\",\"title_color\":\"globals\\/colors?id=6018f3f\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"79fc46b5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Special Offers\",\"_margin\":{\"unit\":\"px\",\"top\":\"27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"21\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"14\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":200},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6b3bcd1e\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"52\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"31\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"28\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"premium_eq_height_switcher\":\"\",\"premium_eq_height_type\":\"widget\",\"premium_eq_height_target\":\"\",\"premium_eq_height_custom_target\":\"\",\"premium_eq_height_enable_on\":[\"desktop\",\"tablet\",\"mobile\"]},\"elements\":[{\"id\":\"212f998b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"274a2115\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"49\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_010-1.jpg\"},\"_background_position\":\"top center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"31816177\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"544083b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"50\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_07.jpg\"},\"_background_position\":\"top center\",\"_background_position_mobile\":\"top center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"31025b66\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"29\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"29\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"premium_eq_height_switcher\":\"\",\"premium_eq_height_type\":\"widget\",\"premium_eq_height_target\":\"\",\"premium_eq_height_custom_target\":\"\",\"premium_eq_height_enable_on\":[\"desktop\",\"tablet\",\"mobile\"]},\"elements\":[{\"id\":\"11d7386b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"21b2d466\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"51\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_09.jpg\"},\"_background_position\":\"top center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true},{\"id\":\"135fad7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"19\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"29\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"content_position\":\"center\"},\"elements\":[{\"id\":\"49277178\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"140\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"fast\",\"_animation_delay\":100,\"_background_background\":\"classic\",\"_background_image\":{\"id\":\"52\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/TDV_M86_03-1.jpg\"},\"_background_position\":\"top center\",\"_background_position_mobile\":\"top center\",\"_background_repeat\":\"no-repeat\",\"_background_size\":\"cover\",\"_element_width\":\"auto\",\"_element_width_mobile\":\"inherit\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(234,55,'_elementor_page_assets','a:1:{s:6:\"styles\";a:67:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";i:37;s:12:\"e-animations\";i:38;s:12:\"e-animations\";i:39;s:12:\"e-animations\";i:40;s:12:\"e-animations\";i:41;s:12:\"e-animations\";i:42;s:12:\"e-animations\";i:43;s:12:\"e-animations\";i:44;s:12:\"e-animations\";i:45;s:12:\"e-animations\";i:46;s:12:\"e-animations\";i:47;s:12:\"e-animations\";i:48;s:12:\"e-animations\";i:49;s:12:\"e-animations\";i:50;s:12:\"e-animations\";i:51;s:12:\"e-animations\";i:52;s:12:\"e-animations\";i:53;s:12:\"e-animations\";i:54;s:12:\"e-animations\";i:55;s:12:\"e-animations\";i:56;s:12:\"e-animations\";i:57;s:12:\"e-animations\";i:58;s:12:\"e-animations\";i:59;s:12:\"e-animations\";i:60;s:12:\"e-animations\";i:61;s:12:\"e-animations\";i:62;s:12:\"e-animations\";i:63;s:12:\"e-animations\";i:64;s:12:\"e-animations\";i:65;s:12:\"e-animations\";i:66;s:12:\"e-animations\";}}'),(237,53,'ekit_post_views_count','2'),(238,32,'_wp_trash_meta_status','publish'),(239,32,'_wp_trash_meta_time','1689450235'),(240,32,'_wp_desired_post_slug','home'),(251,57,'envato_tk_manifest','a:7:{s:16:\"manifest_version\";s:6:\"1.0.19\";s:5:\"title\";s:60:\"Mindary – Psychology and Counseling Elementor Template Kit\";s:12:\"page_builder\";s:9:\"elementor\";s:11:\"kit_version\";s:5:\"1.0.0\";s:9:\"templates\";a:18:{i:0;a:9:{s:4:\"name\";s:17:\"Global Kit Styles\";s:10:\"screenshot\";s:33:\"screenshots/global-kit-styles.jpg\";s:6:\"source\";s:21:\"templates/global.json\";s:11:\"preview_url\";s:23:\"https://kit.baliniz.com\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:4:{s:13:\"template_type\";s:13:\"global-styles\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;s:31:\"additional_template_information\";a:1:{i:0;s:85:\"These are the global theme styles configured through the Elementor Theme Styles area.\";}}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:58;}}}i:1;a:9:{s:4:\"name\";s:4:\"Home\";s:10:\"screenshot\";s:20:\"screenshots/home.jpg\";s:6:\"source\";s:19:\"templates/home.json\";s:11:\"preview_url\";s:50:\"https://kit.baliniz.com/mindary/template-kit/home/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-home\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:142;}}}i:2;a:8:{s:4:\"name\";s:8:\"About Us\";s:10:\"screenshot\";s:24:\"screenshots/about-us.jpg\";s:6:\"source\";s:23:\"templates/about-us.json\";s:11:\"preview_url\";s:54:\"https://kit.baliniz.com/mindary/template-kit/about-us/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:3;a:9:{s:4:\"name\";s:19:\"MetForm Appointment\";s:10:\"screenshot\";s:35:\"screenshots/metform-appointment.jpg\";s:6:\"source\";s:34:\"templates/metform-appointment.json\";s:11:\"preview_url\";s:65:\"https://kit.baliniz.com/mindary/template-kit/metform-appointment/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:64;}}}i:4;a:8:{s:4:\"name\";s:8:\"Services\";s:10:\"screenshot\";s:24:\"screenshots/services.jpg\";s:6:\"source\";s:23:\"templates/services.json\";s:11:\"preview_url\";s:54:\"https://kit.baliniz.com/mindary/template-kit/services/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:5;a:9:{s:4:\"name\";s:5:\"Cases\";s:10:\"screenshot\";s:21:\"screenshots/cases.jpg\";s:6:\"source\";s:20:\"templates/cases.json\";s:11:\"preview_url\";s:51:\"https://kit.baliniz.com/mindary/template-kit/cases/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:138;}}}i:6;a:9:{s:4:\"name\";s:12:\"Case Details\";s:10:\"screenshot\";s:28:\"screenshots/case-details.jpg\";s:6:\"source\";s:27:\"templates/case-details.json\";s:11:\"preview_url\";s:58:\"https://kit.baliniz.com/mindary/template-kit/case-details/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:127;}}}i:7;a:9:{s:4:\"name\";s:11:\"Appointment\";s:10:\"screenshot\";s:27:\"screenshots/appointment.jpg\";s:6:\"source\";s:26:\"templates/appointment.json\";s:11:\"preview_url\";s:57:\"https://kit.baliniz.com/mindary/template-kit/appointment/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:97;}}}i:8;a:9:{s:4:\"name\";s:7:\"Pricing\";s:10:\"screenshot\";s:23:\"screenshots/pricing.jpg\";s:6:\"source\";s:22:\"templates/pricing.json\";s:11:\"preview_url\";s:53:\"https://kit.baliniz.com/mindary/template-kit/pricing/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:131;}}}i:9;a:8:{s:4:\"name\";s:13:\"Pshychologist\";s:10:\"screenshot\";s:29:\"screenshots/pshychologist.jpg\";s:6:\"source\";s:28:\"templates/pshychologist.json\";s:11:\"preview_url\";s:59:\"https://kit.baliniz.com/mindary/template-kit/pshychologist/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:10;a:8:{s:4:\"name\";s:3:\"FAQ\";s:10:\"screenshot\";s:19:\"screenshots/faq.jpg\";s:6:\"source\";s:18:\"templates/faq.json\";s:11:\"preview_url\";s:49:\"https://kit.baliniz.com/mindary/template-kit/faq/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:11;a:8:{s:4:\"name\";s:4:\"Blog\";s:10:\"screenshot\";s:20:\"screenshots/blog.jpg\";s:6:\"source\";s:19:\"templates/blog.json\";s:11:\"preview_url\";s:50:\"https://kit.baliniz.com/mindary/template-kit/blog/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:12;a:9:{s:4:\"name\";s:11:\"Single Blog\";s:10:\"screenshot\";s:27:\"screenshots/single-blog.jpg\";s:6:\"source\";s:26:\"templates/single-blog.json\";s:11:\"preview_url\";s:57:\"https://kit.baliniz.com/mindary/template-kit/single-blog/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:112;}}}i:13;a:9:{s:4:\"name\";s:15:\"MetForm Contact\";s:10:\"screenshot\";s:31:\"screenshots/metform-contact.jpg\";s:6:\"source\";s:30:\"templates/metform-contact.json\";s:11:\"preview_url\";s:61:\"https://kit.baliniz.com/mindary/template-kit/metform-contact/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:81;}}}i:14;a:8:{s:4:\"name\";s:7:\"Contact\";s:10:\"screenshot\";s:23:\"screenshots/contact.jpg\";s:6:\"source\";s:22:\"templates/contact.json\";s:11:\"preview_url\";s:53:\"https://kit.baliniz.com/mindary/template-kit/contact/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:15;a:9:{s:4:\"name\";s:6:\"Header\";s:10:\"screenshot\";s:22:\"screenshots/header.jpg\";s:6:\"source\";s:21:\"templates/header.json\";s:11:\"preview_url\";s:52:\"https://kit.baliniz.com/mindary/template-kit/header/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:14:\"section-header\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:117;}}}i:16;a:8:{s:4:\"name\";s:6:\"Footer\";s:10:\"screenshot\";s:22:\"screenshots/footer.jpg\";s:6:\"source\";s:21:\"templates/footer.json\";s:11:\"preview_url\";s:52:\"https://kit.baliniz.com/mindary/template-kit/footer/\";s:4:\"type\";s:7:\"section\";s:8:\"category\";s:7:\"section\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:14:\"section-footer\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;}i:17;a:9:{s:4:\"name\";s:8:\"404 Page\";s:10:\"screenshot\";s:24:\"screenshots/404-page.jpg\";s:6:\"source\";s:23:\"templates/404-page.json\";s:11:\"preview_url\";s:54:\"https://kit.baliniz.com/mindary/template-kit/404-page/\";s:4:\"type\";s:4:\"page\";s:8:\"category\";s:4:\"page\";s:8:\"metadata\";a:3:{s:13:\"template_type\";s:11:\"single-page\";s:14:\"include_in_zip\";s:1:\"1\";s:22:\"elementor_pro_required\";N;}s:22:\"elementor_pro_required\";b:0;s:7:\"imports\";a:1:{i:0;a:1:{s:20:\"imported_template_id\";i:107;}}}}s:16:\"required_plugins\";a:5:{i:0;a:4:{s:4:\"name\";s:16:\"ElementsKit Lite\";s:7:\"version\";s:7:\"2.3.1.1\";s:4:\"file\";s:37:\"elementskit-lite/elementskit-lite.php\";s:6:\"author\";s:5:\"Wpmet\";}i:1;a:4:{s:4:\"name\";s:35:\"Elementor - Header, Footer & Blocks\";s:7:\"version\";s:5:\"1.5.9\";s:4:\"file\";s:51:\"header-footer-elementor/header-footer-elementor.php\";s:6:\"author\";s:31:\"Brainstorm Force, Nikhil Chavan\";}i:2;a:4:{s:4:\"name\";s:17:\"Jeg Elementor Kit\";s:7:\"version\";s:6:\"1.10.2\";s:4:\"file\";s:39:\"jeg-elementor-kit/jeg-elementor-kit.php\";s:6:\"author\";s:9:\"JegStudio\";}i:3;a:4:{s:4:\"name\";s:7:\"MetForm\";s:7:\"version\";s:6:\"1.4.10\";s:4:\"file\";s:19:\"metform/metform.php\";s:6:\"author\";s:5:\"Wpmet\";}i:4;a:4:{s:4:\"name\";s:9:\"Elementor\";s:7:\"version\";s:5:\"3.2.2\";s:4:\"file\";s:23:\"elementor/elementor.php\";s:6:\"author\";s:13:\"Elementor.com\";}}s:6:\"images\";a:39:{i:0;a:8:{s:8:\"filename\";s:74:\"professional-providing-psychological-counseling-indoors-e1625973432238.jpg\";s:13:\"thumbnail_url\";s:135:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/06/professional-providing-psychological-counseling-indoors-800x450.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}}s:8:\"filesize\";i:195407;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1080;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-9BH8ZVV\";}i:1;a:8:{s:8:\"filename\";s:38:\"counsel-of-students-e1625973503632.jpg\";s:13:\"thumbnail_url\";s:99:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/06/counsel-of-students-800x533.jpg\";s:9:\"templates\";a:4:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:20:\"templates/cases.json\";s:4:\"name\";s:5:\"Cases\";}i:3;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}}s:8:\"filesize\";i:235911;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-TYK44AM\";}i:2;a:8:{s:8:\"filename\";s:89:\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--e1625973530854.jpg\";s:13:\"thumbnail_url\";s:165:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/06/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--e1624799493930-800x448.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:28:\"templates/pshychologist.json\";s:4:\"name\";s:13:\"Pshychologist\";}}s:8:\"filesize\";i:306854;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1075;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-8R56JE4\";}i:3;a:8:{s:8:\"filename\";s:95:\"mental-health-concept-communication-session-of-woman-psychologist-and-client-e1625973397483.jpg\";s:13:\"thumbnail_url\";s:156:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/06/mental-health-concept-communication-session-of-woman-psychologist-and-client-800x533.jpg\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:2;a:2:{s:6:\"source\";s:20:\"templates/cases.json\";s:4:\"name\";s:5:\"Cases\";}i:3;a:2:{s:6:\"source\";s:27:\"templates/case-details.json\";s:4:\"name\";s:12:\"Case Details\";}i:4;a:2:{s:6:\"source\";s:23:\"templates/404-page.json\";s:4:\"name\";s:8:\"404 Page\";}}s:8:\"filesize\";i:260005;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-NCRCFMU\";}i:4;a:8:{s:8:\"filename\";s:76:\"professional-therapist-working-with-fighting-young-couple-e1625973570195.jpg\";s:13:\"thumbnail_url\";s:137:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/06/professional-therapist-working-with-fighting-young-couple-800x533.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:175991;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-X4HZVTC\";}i:5;a:8:{s:8:\"filename\";s:11:\"RUUMCJY.png\";s:13:\"thumbnail_url\";s:79:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/RUUMCJY.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:12558;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:284;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-RUUMCJY\";}i:6;a:8:{s:8:\"filename\";s:22:\"depression-2UJ6UY8.png\";s:13:\"thumbnail_url\";s:90:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/depression-2UJ6UY8.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:14017;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:284;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-2UJ6UY8\";}i:7;a:8:{s:8:\"filename\";s:18:\"family-XNUKDAT.png\";s:13:\"thumbnail_url\";s:86:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/family-XNUKDAT.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:15428;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:284;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-XNUKDAT\";}i:8;a:8:{s:8:\"filename\";s:19:\"anxiety-TYH9SPN.png\";s:13:\"thumbnail_url\";s:87:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/anxiety-TYH9SPN.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:11474;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:284;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-TYH9SPN\";}i:9;a:8:{s:8:\"filename\";s:17:\"couple-RUUMCJ.png\";s:13:\"thumbnail_url\";s:85:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/couple-RUUMCJ.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}}s:8:\"filesize\";i:13843;s:10:\"dimensions\";a:2:{i:0;i:300;i:1;i:284;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-RUUMCJY\";}i:10;a:8:{s:8:\"filename\";s:34:\"mental-problems-e1625973601412.jpg\";s:13:\"thumbnail_url\";s:95:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/mental-problems-800x533.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:2;a:2:{s:6:\"source\";s:28:\"templates/pshychologist.json\";s:4:\"name\";s:13:\"Pshychologist\";}}s:8:\"filesize\";i:303153;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-SY287G5\";}i:11;a:8:{s:8:\"filename\";s:10:\"dot-bg.png\";s:13:\"thumbnail_url\";s:86:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/dot-bg-800x193.png\";s:9:\"templates\";a:7:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:3;a:2:{s:6:\"source\";s:20:\"templates/cases.json\";s:4:\"name\";s:5:\"Cases\";}i:4;a:2:{s:6:\"source\";s:26:\"templates/appointment.json\";s:4:\"name\";s:11:\"Appointment\";}i:5;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}i:6;a:2:{s:6:\"source\";s:28:\"templates/pshychologist.json\";s:4:\"name\";s:13:\"Pshychologist\";}}s:8:\"filesize\";i:6718;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:462;}s:12:\"image_source\";s:12:\"self_created\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:32:\"https://kit.baliniz.com/mindary/\";}i:12;a:8:{s:8:\"filename\";s:86:\"smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor-e1625973543943.jpg\";s:13:\"thumbnail_url\";s:147:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/06/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor-800x533.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:28:\"templates/pshychologist.json\";s:4:\"name\";s:13:\"Pshychologist\";}}s:8:\"filesize\";i:229625;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-TLRKBAG\";}i:13;a:8:{s:8:\"filename\";s:34:\"therapy-session-in-the-AK6AHJU.jpg\";s:13:\"thumbnail_url\";s:110:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/therapy-session-in-the-AK6AHJU-800x533.jpg\";s:9:\"templates\";a:5:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:2;a:2:{s:6:\"source\";s:20:\"templates/cases.json\";s:4:\"name\";s:5:\"Cases\";}i:3;a:2:{s:6:\"source\";s:27:\"templates/case-details.json\";s:4:\"name\";s:12:\"Case Details\";}i:4;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}}s:8:\"filesize\";i:231375;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-AK6AHJU\";}i:14;a:8:{s:8:\"filename\";s:76:\"blonde-haired-psychoanalyst-helping-a-man-with-depression-e1625973716721.jpg\";s:13:\"thumbnail_url\";s:137:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/blonde-haired-psychoanalyst-helping-a-man-with-depression-800x533.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:20:\"templates/cases.json\";s:4:\"name\";s:5:\"Cases\";}i:2;a:2:{s:6:\"source\";s:27:\"templates/case-details.json\";s:4:\"name\";s:12:\"Case Details\";}}s:8:\"filesize\";i:211370;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-3CBFRMH\";}i:15;a:8:{s:8:\"filename\";s:57:\"senior-patient-talking-to-psychologist-e1625973447340.jpg\";s:13:\"thumbnail_url\";s:118:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/06/senior-patient-talking-to-psychologist-800x534.jpg\";s:9:\"templates\";a:6:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/services.json\";s:4:\"name\";s:8:\"Services\";}i:2;a:2:{s:6:\"source\";s:20:\"templates/cases.json\";s:4:\"name\";s:5:\"Cases\";}i:3;a:2:{s:6:\"source\";s:27:\"templates/case-details.json\";s:4:\"name\";s:12:\"Case Details\";}i:4;a:2:{s:6:\"source\";s:26:\"templates/appointment.json\";s:4:\"name\";s:11:\"Appointment\";}i:5;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}}s:8:\"filesize\";i:273062;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1282;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-G2DVLUN\";}i:16;a:8:{s:8:\"filename\";s:9:\"image.jpg\";s:13:\"thumbnail_url\";s:77:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/image.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:26:\"templates/appointment.json\";s:4:\"name\";s:11:\"Appointment\";}}s:8:\"filesize\";i:14303;s:10:\"dimensions\";a:2:{i:0;i:120;i:1;i:120;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-WAUZF95\";}i:17;a:8:{s:8:\"filename\";s:96:\"men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other--e1625973488675.jpg\";s:13:\"thumbnail_url\";s:157:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/06/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other--800x554.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:19:\"templates/home.json\";s:4:\"name\";s:4:\"Home\";}i:1;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:2;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}}s:8:\"filesize\";i:290454;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1331;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-UY7LKDE\";}i:18;a:8:{s:8:\"filename\";s:60:\"african-man-in-mental-health-consultation-e1625973612562.jpg\";s:13:\"thumbnail_url\";s:121:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/african-man-in-mental-health-consultation-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}}s:8:\"filesize\";i:283367;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-63X7985\";}i:19;a:8:{s:8:\"filename\";s:41:\"female-psychologist-in-office-FHV8Q5Z.jpg\";s:13:\"thumbnail_url\";s:117:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/female-psychologist-in-office-FHV8Q5Z-800x999.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:1;a:2:{s:6:\"source\";s:28:\"templates/pshychologist.json\";s:4:\"name\";s:13:\"Pshychologist\";}}s:8:\"filesize\";i:288625;s:10:\"dimensions\";a:2:{i:0;i:820;i:1;i:1024;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-FHV8Q5Z\";}i:20;a:8:{s:8:\"filename\";s:34:\"psychologist-in-office-WAUZF95.jpg\";s:13:\"thumbnail_url\";s:110:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/psychologist-in-office-WAUZF95-800x999.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:1;a:2:{s:6:\"source\";s:28:\"templates/pshychologist.json\";s:4:\"name\";s:13:\"Pshychologist\";}}s:8:\"filesize\";i:169645;s:10:\"dimensions\";a:2:{i:0;i:820;i:1;i:1024;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-WAUZF95\";}i:21;a:8:{s:8:\"filename\";s:48:\"smiling-man-at-group-therapy-session-7HU8Q2C.jpg\";s:13:\"thumbnail_url\";s:124:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/smiling-man-at-group-therapy-session-7HU8Q2C-800x999.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:23:\"templates/about-us.json\";s:4:\"name\";s:8:\"About Us\";}i:1;a:2:{s:6:\"source\";s:28:\"templates/pshychologist.json\";s:4:\"name\";s:13:\"Pshychologist\";}}s:8:\"filesize\";i:173206;s:10:\"dimensions\";a:2:{i:0;i:820;i:1;i:1024;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-7HU8Q2C\";}i:22;a:8:{s:8:\"filename\";s:53:\"couple-talking-to-family-counselor-e1625973754413.jpg\";s:13:\"thumbnail_url\";s:114:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/couple-talking-to-family-counselor-800x534.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:20:\"templates/cases.json\";s:4:\"name\";s:5:\"Cases\";}}s:8:\"filesize\";i:255542;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1282;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PDN9EQC\";}i:23;a:8:{s:8:\"filename\";s:32:\"man-in-stress-e1625973742742.jpg\";s:13:\"thumbnail_url\";s:93:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/man-in-stress-800x533.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:20:\"templates/cases.json\";s:4:\"name\";s:5:\"Cases\";}i:1;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}}s:8:\"filesize\";i:239961;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-PV75HYA\";}i:24;a:8:{s:8:\"filename\";s:73:\"psychotherapist-talking-with-patients-of-support-group-e1625973936843.jpg\";s:13:\"thumbnail_url\";s:134:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/psychotherapist-talking-with-patients-of-support-group-800x551.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:20:\"templates/cases.json\";s:4:\"name\";s:5:\"Cases\";}}s:8:\"filesize\";i:208399;s:10:\"dimensions\";a:2:{i:0;i:1440;i:1;i:992;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-VH3DB5J\";}i:25;a:8:{s:8:\"filename\";s:11:\"MKLVKTE.jpg\";s:13:\"thumbnail_url\";s:79:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/MKLVKTE.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:20:\"templates/cases.json\";s:4:\"name\";s:5:\"Cases\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}}s:8:\"filesize\";i:59237;s:10:\"dimensions\";a:2:{i:0;i:320;i:1;i:320;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-MKLVKTE\";}i:26;a:8:{s:8:\"filename\";s:11:\"UUFGSJH.jpg\";s:13:\"thumbnail_url\";s:79:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/UUFGSJH.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:20:\"templates/cases.json\";s:4:\"name\";s:5:\"Cases\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}}s:8:\"filesize\";i:57515;s:10:\"dimensions\";a:2:{i:0;i:320;i:1;i:320;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-UUFGSJH\";}i:27;a:8:{s:8:\"filename\";s:11:\"CASCKD8.jpg\";s:13:\"thumbnail_url\";s:79:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/CASCKD8.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:20:\"templates/cases.json\";s:4:\"name\";s:5:\"Cases\";}i:1;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}}s:8:\"filesize\";i:52477;s:10:\"dimensions\";a:2:{i:0;i:320;i:1;i:320;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-CASCKD8\";}i:28;a:8:{s:8:\"filename\";s:72:\"couple-talking-at-therapy-session-with-male-therapist-e1625973639859.jpg\";s:13:\"thumbnail_url\";s:133:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/couple-talking-at-therapy-session-with-male-therapist-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:27:\"templates/case-details.json\";s:4:\"name\";s:12:\"Case Details\";}}s:8:\"filesize\";i:259934;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-WHKJEW5\";}i:29;a:8:{s:8:\"filename\";s:91:\"happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up-e1625973649757.jpg\";s:13:\"thumbnail_url\";s:152:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:27:\"templates/case-details.json\";s:4:\"name\";s:12:\"Case Details\";}}s:8:\"filesize\";i:202973;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-QACVEAS\";}i:30;a:8:{s:8:\"filename\";s:107:\"cropped-shot-of-psychotherapist-writing-on-clipboard-and-female-patient-sitting-on-couch-e1625973417819.jpg\";s:13:\"thumbnail_url\";s:168:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/06/cropped-shot-of-psychotherapist-writing-on-clipboard-and-female-patient-sitting-on-couch-800x534.jpg\";s:9:\"templates\";a:3:{i:0;a:2:{s:6:\"source\";s:26:\"templates/appointment.json\";s:4:\"name\";s:11:\"Appointment\";}i:1;a:2:{s:6:\"source\";s:19:\"templates/blog.json\";s:4:\"name\";s:4:\"Blog\";}i:2;a:2:{s:6:\"source\";s:26:\"templates/single-blog.json\";s:4:\"name\";s:11:\"Single Blog\";}}s:8:\"filesize\";i:142988;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1282;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-ACRNESV\";}i:31;a:8:{s:8:\"filename\";s:62:\"mature-psychologist-posing-in-group-therapy-e1625973519507.jpg\";s:13:\"thumbnail_url\";s:123:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/06/mature-psychologist-posing-in-group-therapy-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}}s:8:\"filesize\";i:235718;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-NKBXRCA\";}i:32;a:8:{s:8:\"filename\";s:118:\"mental-health-and-psychological-help-concept-young-woman-with-depression-on-counseling-session-with-e1625973581243.jpg\";s:13:\"thumbnail_url\";s:179:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/06/mental-health-and-psychological-help-concept-young-woman-with-depression-on-counseling-session-with-800x533.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/pricing.json\";s:4:\"name\";s:7:\"Pricing\";}}s:8:\"filesize\";i:205009;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1280;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-LVN8AA4\";}i:33;a:8:{s:8:\"filename\";s:28:\"blonde-counselor-RZ2YJEB.jpg\";s:13:\"thumbnail_url\";s:104:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/blonde-counselor-RZ2YJEB-800x999.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:28:\"templates/pshychologist.json\";s:4:\"name\";s:13:\"Pshychologist\";}}s:8:\"filesize\";i:157843;s:10:\"dimensions\";a:2:{i:0;i:820;i:1;i:1024;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-RZ2YJEB\";}i:34;a:8:{s:8:\"filename\";s:62:\"portrait-of-professional-male-therapist-in-suit-sh-LEUGTME.jpg\";s:13:\"thumbnail_url\";s:138:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/portrait-of-professional-male-therapist-in-suit-sh-LEUGTME-800x999.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:28:\"templates/pshychologist.json\";s:4:\"name\";s:13:\"Pshychologist\";}}s:8:\"filesize\";i:180537;s:10:\"dimensions\";a:2:{i:0;i:820;i:1;i:1024;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-LEUGTME\";}i:35;a:8:{s:8:\"filename\";s:57:\"beautiful-psychologist-posing-for-photography-GD5VTJS.jpg\";s:13:\"thumbnail_url\";s:133:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/beautiful-psychologist-posing-for-photography-GD5VTJS-800x999.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:28:\"templates/pshychologist.json\";s:4:\"name\";s:13:\"Pshychologist\";}}s:8:\"filesize\";i:152954;s:10:\"dimensions\";a:2:{i:0;i:820;i:1;i:1024;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-GD5VTJS\";}i:36;a:8:{s:8:\"filename\";s:95:\"mental-health-concept-communication-session-of-woman-psychologist-and-client-e1625973626850.jpg\";s:13:\"thumbnail_url\";s:156:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/mental-health-concept-communication-session-of-woman-psychologist-and-client-800x534.jpg\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:18:\"templates/faq.json\";s:4:\"name\";s:3:\"FAQ\";}i:1;a:2:{s:6:\"source\";s:26:\"templates/single-blog.json\";s:4:\"name\";s:11:\"Single Blog\";}}s:8:\"filesize\";i:220111;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1281;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-G25BDS5\";}i:37;a:8:{s:8:\"filename\";s:86:\"handshake-of-two-men-successful-business-contacts-after-a-good-deal-e1625973771991.jpg\";s:13:\"thumbnail_url\";s:147:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/handshake-of-two-men-successful-business-contacts-after-a-good-deal-800x534.jpg\";s:9:\"templates\";a:1:{i:0;a:2:{s:6:\"source\";s:22:\"templates/contact.json\";s:4:\"name\";s:7:\"Contact\";}}s:8:\"filesize\";i:131857;s:10:\"dimensions\";a:2:{i:0;i:1920;i:1;i:1282;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:3:\"yes\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-ZYDNDFL\";}i:38;a:8:{s:8:\"filename\";s:16:\"logo-QQBEZ9C.png\";s:13:\"thumbnail_url\";s:84:\"https://kit.baliniz.com/mindary/wp-content/uploads/sites/11/2021/07/logo-QQBEZ9C.png\";s:9:\"templates\";a:2:{i:0;a:2:{s:6:\"source\";s:21:\"templates/header.json\";s:4:\"name\";s:6:\"Header\";}i:1;a:2:{s:6:\"source\";s:21:\"templates/footer.json\";s:4:\"name\";s:6:\"Footer\";}}s:8:\"filesize\";i:16076;s:10:\"dimensions\";a:2:{i:0;i:723;i:1;i:179;}s:12:\"image_source\";s:15:\"envato_elements\";s:15:\"person_or_place\";s:2:\"no\";s:10:\"image_urls\";s:41:\"https://elements.envato.com/image-QQBEZ9C\";}}}'),(252,57,'envato_tk_folder_name','30e8d93bb58aac3d33d07323572fdb1e'),(253,57,'envato_tk_builder','elementor'),(254,57,'envato_tk_source_zip_url','https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/template-kits/30e8d93bb58aac3d33d07323572fdb1e/source-57.zip'),(255,58,'_elementor_edit_mode','builder'),(256,58,'_elementor_template_type','kit'),(257,58,'_elementor_version','3.14.1'),(258,59,'_elementor_edit_mode','builder'),(259,59,'_elementor_template_type','section'),(260,59,'_elementor_version','3.14.1'),(261,58,'_wp_page_template','default'),(262,58,'_elementor_page_settings','a:85:{s:13:\"custom_colors\";a:2:{i:0;a:3:{s:3:\"_id\";s:7:\"50928c2\";s:5:\"title\";s:15:\"Bg Green darken\";s:5:\"color\";s:7:\"#01221F\";}i:1;a:3:{s:3:\"_id\";s:7:\"e5c8540\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}}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:\"#06685F\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#DD697E\";}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:\"#EC95A6\";}}s:17:\"system_typography\";a:4:{i:0;a:8:{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:16:\"Playfair Display\";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:54;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}}i:1;a:8:{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:16:\"Playfair Display\";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:32;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}}i:2;a:8:{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:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:3;a:8:{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:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:16:{i:0;a:8:{s:3:\"_id\";s:7:\"7f517b0\";s:5:\"title\";s:2:\"H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:7:\"4e452f7\";s:5:\"title\";s:2:\"H4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:2;a:8:{s:3:\"_id\";s:7:\"997f697\";s:5:\"title\";s:2:\"H5\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:3;a:7:{s:3:\"_id\";s:7:\"1660fa3\";s:5:\"title\";s:2:\"H6\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}}i:4;a:10:{s:3:\"_id\";s:7:\"4b416bd\";s:5:\"title\";s:6:\"H2 Alt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:42;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:29:\"typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}}i:5;a:8:{s:3:\"_id\";s:7:\"01acdab\";s:5:\"title\";s:6:\"H3 Alt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}i:6;a:9:{s:3:\"_id\";s:7:\"8e0c2ec\";s:5:\"title\";s:3:\"Nav\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}}i:7;a:10:{s:3:\"_id\";s:7:\"a892a9f\";s:5:\"title\";s:6:\"Button\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}}i:8;a:10:{s:3:\"_id\";s:7:\"a48ae84\";s:5:\"title\";s:8:\"Button 2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:9;a:8:{s:3:\"_id\";s:7:\"919cf83\";s:5:\"title\";s:7:\"Funfact\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}}i:10;a:7:{s:3:\"_id\";s:7:\"7f7fd94\";s:5:\"title\";s:6:\"Text 2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}i:11;a:8:{s:3:\"_id\";s:7:\"6f01aa7\";s:5:\"title\";s:11:\"Text italic\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}i:12;a:10:{s:3:\"_id\";s:7:\"5702cc8\";s:5:\"title\";s:16:\"Desc Testimonial\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}i:13;a:8:{s:3:\"_id\";s:7:\"2260201\";s:5:\"title\";s:3:\"404\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:156;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:96;s:5:\"sizes\";a:0:{}}}i:14;a:8:{s:3:\"_id\";s:7:\"ff23f0d\";s:5:\"title\";s:7:\"Pricing\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:52;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:42;s:5:\"sizes\";a:0:{}}}i:15;a:7:{s:3:\"_id\";s:7:\"b31596a\";s:5:\"title\";s:12:\"Phone Number\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:20:\"button_border_border\";s:5:\"solid\";s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";s:8:\"isLinked\";b:1;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"40\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:11:\"__globals__\";a:23:{s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:17:\"link_normal_color\";s:24:\"globals/colors?id=accent\";s:16:\"link_hover_color\";s:25:\"globals/colors?id=primary\";s:8:\"h1_color\";s:25:\"globals/colors?id=primary\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=primary\";s:8:\"h2_color\";s:25:\"globals/colors?id=primary\";s:24:\"h2_typography_typography\";s:31:\"globals/typography?id=secondary\";s:8:\"h3_color\";s:25:\"globals/colors?id=primary\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=7f517b0\";s:8:\"h4_color\";s:25:\"globals/colors?id=primary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=4e452f7\";s:8:\"h5_color\";s:24:\"globals/colors?id=accent\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=997f697\";s:8:\"h6_color\";s:25:\"globals/colors?id=primary\";s:24:\"h6_typography_typography\";s:29:\"globals/typography?id=1660fa3\";s:23:\"button_background_color\";s:24:\"globals/colors?id=accent\";s:17:\"button_text_color\";s:25:\"globals/colors?id=e5c8540\";s:28:\"button_typography_typography\";s:29:\"globals/typography?id=a48ae84\";s:23:\"button_hover_text_color\";s:0:\"\";s:29:\"button_hover_background_color\";s:0:\"\";s:32:\"form_label_typography_typography\";s:0:\"\";s:16:\"form_label_color\";s:25:\"globals/colors?id=primary\";}s:10:\"body_color\";s:7:\"#7A7A7A\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:5:\"Inter\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"300\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:17:\"link_normal_color\";s:7:\"#E17141\";s:16:\"link_hover_color\";s:7:\"#06685F\";s:8:\"h1_color\";s:7:\"#06685F\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:54;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"600\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:8:\"h2_color\";s:7:\"#06685F\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"600\";s:25:\"h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:8:\"h3_color\";s:7:\"#06685F\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"600\";s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:8:\"h4_color\";s:7:\"#06685F\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"600\";s:25:\"h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:8:\"h5_color\";s:7:\"#E17141\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:5:\"Inter\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"500\";s:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#06685F\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"600\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:5:\"Inter\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"600\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:29:\"button_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#E17141\";s:23:\"button_hover_text_color\";s:7:\"#FFFFFF\";s:29:\"button_hover_background_color\";s:7:\"#E17141\";s:16:\"form_label_color\";s:7:\"#06685F\";s:32:\"form_label_typography_typography\";s:6:\"custom\";s:33:\"form_label_typography_font_family\";s:16:\"Playfair Display\";s:31:\"form_label_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:33:\"form_label_typography_font_weight\";s:3:\"600\";s:33:\"form_label_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.6000000000000001;s:5:\"sizes\";a:0:{}}s:24:\"form_field_border_border\";s:5:\"solid\";s:23:\"form_field_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:23:\"form_field_border_color\";s:7:\"#E1E1E1\";s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";s:8:\"isLinked\";b:1;}s:21:\"button_padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"18\";s:5:\"right\";s:2:\"32\";s:6:\"bottom\";s:2:\"18\";s:4:\"left\";s:2:\"32\";s:8:\"isLinked\";b:0;}s:9:\"site_name\";s:12:\"Health Cloud\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:12:\"site_favicon\";a:5:{s:3:\"url\";s:81:\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-04.webp\";s:2:\"id\";i:295;s:4:\"size\";s:0:\"\";s:3:\"alt\";s:20:\"Health Cloud favicon\";s:6:\"source\";s:7:\"library\";}s:16:\"site_description\";s:40:\"Your Healthcare Digital Marketing Agency\";}'),(263,58,'_elementor_data','[]'),(264,60,'_elementor_edit_mode','builder'),(265,60,'_elementor_template_type','section'),(266,60,'_elementor_version','3.14.1'),(267,60,'_wp_page_template','default'),(268,60,'_elementor_page_settings','a:81:{s:13:\"custom_colors\";a:2:{i:0;a:3:{s:3:\"_id\";s:7:\"50928c2\";s:5:\"title\";s:15:\"Bg Green darken\";s:5:\"color\";s:7:\"#01221F\";}i:1;a:3:{s:3:\"_id\";s:7:\"e5c8540\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}}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:\"#06685F\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#E17141\";}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:\"#E17141\";}}s:17:\"system_typography\";a:4:{i:0;a:8:{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:16:\"Playfair Display\";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:54;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}}i:1;a:8:{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:16:\"Playfair Display\";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:32;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}}i:2;a:8:{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:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:3;a:8:{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:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:16:{i:0;a:8:{s:3:\"_id\";s:7:\"7f517b0\";s:5:\"title\";s:2:\"H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:7:\"4e452f7\";s:5:\"title\";s:2:\"H4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:2;a:8:{s:3:\"_id\";s:7:\"997f697\";s:5:\"title\";s:2:\"H5\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:3;a:7:{s:3:\"_id\";s:7:\"1660fa3\";s:5:\"title\";s:2:\"H6\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}}i:4;a:10:{s:3:\"_id\";s:7:\"4b416bd\";s:5:\"title\";s:6:\"H2 Alt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:42;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:29:\"typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}}i:5;a:8:{s:3:\"_id\";s:7:\"01acdab\";s:5:\"title\";s:6:\"H3 Alt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}i:6;a:9:{s:3:\"_id\";s:7:\"8e0c2ec\";s:5:\"title\";s:3:\"Nav\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}}i:7;a:10:{s:3:\"_id\";s:7:\"a892a9f\";s:5:\"title\";s:6:\"Button\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}}i:8;a:10:{s:3:\"_id\";s:7:\"a48ae84\";s:5:\"title\";s:8:\"Button 2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:9;a:8:{s:3:\"_id\";s:7:\"919cf83\";s:5:\"title\";s:7:\"Funfact\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}}i:10;a:7:{s:3:\"_id\";s:7:\"7f7fd94\";s:5:\"title\";s:6:\"Text 2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}i:11;a:8:{s:3:\"_id\";s:7:\"6f01aa7\";s:5:\"title\";s:11:\"Text italic\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}i:12;a:10:{s:3:\"_id\";s:7:\"5702cc8\";s:5:\"title\";s:16:\"Desc Testimonial\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}i:13;a:8:{s:3:\"_id\";s:7:\"2260201\";s:5:\"title\";s:3:\"404\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:156;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:96;s:5:\"sizes\";a:0:{}}}i:14;a:8:{s:3:\"_id\";s:7:\"ff23f0d\";s:5:\"title\";s:7:\"Pricing\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:52;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:42;s:5:\"sizes\";a:0:{}}}i:15;a:7:{s:3:\"_id\";s:7:\"b31596a\";s:5:\"title\";s:12:\"Phone Number\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:20:\"button_border_border\";s:5:\"solid\";s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";s:8:\"isLinked\";b:1;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"40\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:11:\"__globals__\";a:23:{s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:17:\"link_normal_color\";s:24:\"globals/colors?id=accent\";s:16:\"link_hover_color\";s:25:\"globals/colors?id=primary\";s:8:\"h1_color\";s:25:\"globals/colors?id=primary\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=primary\";s:8:\"h2_color\";s:25:\"globals/colors?id=primary\";s:24:\"h2_typography_typography\";s:31:\"globals/typography?id=secondary\";s:8:\"h3_color\";s:25:\"globals/colors?id=primary\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=7f517b0\";s:8:\"h4_color\";s:25:\"globals/colors?id=primary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=4e452f7\";s:8:\"h5_color\";s:24:\"globals/colors?id=accent\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=997f697\";s:8:\"h6_color\";s:25:\"globals/colors?id=primary\";s:24:\"h6_typography_typography\";s:29:\"globals/typography?id=1660fa3\";s:23:\"button_background_color\";s:24:\"globals/colors?id=accent\";s:17:\"button_text_color\";s:25:\"globals/colors?id=e5c8540\";s:28:\"button_typography_typography\";s:29:\"globals/typography?id=a48ae84\";s:23:\"button_hover_text_color\";s:0:\"\";s:29:\"button_hover_background_color\";s:0:\"\";s:32:\"form_label_typography_typography\";s:0:\"\";s:16:\"form_label_color\";s:25:\"globals/colors?id=primary\";}s:10:\"body_color\";s:7:\"#7A7A7A\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:5:\"Inter\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"300\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:17:\"link_normal_color\";s:7:\"#E17141\";s:16:\"link_hover_color\";s:7:\"#06685F\";s:8:\"h1_color\";s:7:\"#06685F\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:54;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"600\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:8:\"h2_color\";s:7:\"#06685F\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"600\";s:25:\"h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:8:\"h3_color\";s:7:\"#06685F\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"600\";s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:8:\"h4_color\";s:7:\"#06685F\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"600\";s:25:\"h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:8:\"h5_color\";s:7:\"#E17141\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:5:\"Inter\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"500\";s:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#06685F\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"600\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:5:\"Inter\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"600\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:29:\"button_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#E17141\";s:23:\"button_hover_text_color\";s:7:\"#FFFFFF\";s:29:\"button_hover_background_color\";s:7:\"#E17141\";s:16:\"form_label_color\";s:7:\"#06685F\";s:32:\"form_label_typography_typography\";s:6:\"custom\";s:33:\"form_label_typography_font_family\";s:16:\"Playfair Display\";s:31:\"form_label_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:33:\"form_label_typography_font_weight\";s:3:\"600\";s:33:\"form_label_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.6000000000000001;s:5:\"sizes\";a:0:{}}s:24:\"form_field_border_border\";s:5:\"solid\";s:23:\"form_field_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:23:\"form_field_border_color\";s:7:\"#E1E1E1\";s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";s:8:\"isLinked\";b:1;}s:21:\"button_padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"18\";s:5:\"right\";s:2:\"32\";s:6:\"bottom\";s:2:\"18\";s:4:\"left\";s:2:\"32\";s:8:\"isLinked\";b:0;}}'),(269,60,'_elementor_data','[]'),(270,58,'_elementor_page_assets','a:0:{}'),(271,58,'envato_tk_source_kit','57'),(272,58,'envato_tk_source_index','0'),(273,61,'_elementor_edit_mode','builder'),(274,61,'_elementor_template_type','kit'),(275,61,'_elementor_version','3.14.1'),(276,61,'_wp_page_template','default'),(277,61,'_elementor_page_settings','a:81:{s:13:\"custom_colors\";a:2:{i:0;a:3:{s:3:\"_id\";s:7:\"50928c2\";s:5:\"title\";s:15:\"Bg Green darken\";s:5:\"color\";s:7:\"#01221F\";}i:1;a:3:{s:3:\"_id\";s:7:\"e5c8540\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}}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:\"#06685F\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#E17141\";}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:\"#E17141\";}}s:17:\"system_typography\";a:4:{i:0;a:8:{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:16:\"Playfair Display\";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:54;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}}i:1;a:8:{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:16:\"Playfair Display\";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:32;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}}i:2;a:8:{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:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:3;a:8:{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:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:16:{i:0;a:8:{s:3:\"_id\";s:7:\"7f517b0\";s:5:\"title\";s:2:\"H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:7:\"4e452f7\";s:5:\"title\";s:2:\"H4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:2;a:8:{s:3:\"_id\";s:7:\"997f697\";s:5:\"title\";s:2:\"H5\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:3;a:7:{s:3:\"_id\";s:7:\"1660fa3\";s:5:\"title\";s:2:\"H6\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}}i:4;a:10:{s:3:\"_id\";s:7:\"4b416bd\";s:5:\"title\";s:6:\"H2 Alt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:42;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:29:\"typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}}i:5;a:8:{s:3:\"_id\";s:7:\"01acdab\";s:5:\"title\";s:6:\"H3 Alt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}i:6;a:9:{s:3:\"_id\";s:7:\"8e0c2ec\";s:5:\"title\";s:3:\"Nav\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}}i:7;a:10:{s:3:\"_id\";s:7:\"a892a9f\";s:5:\"title\";s:6:\"Button\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}}i:8;a:10:{s:3:\"_id\";s:7:\"a48ae84\";s:5:\"title\";s:8:\"Button 2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:9;a:8:{s:3:\"_id\";s:7:\"919cf83\";s:5:\"title\";s:7:\"Funfact\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}}i:10;a:7:{s:3:\"_id\";s:7:\"7f7fd94\";s:5:\"title\";s:6:\"Text 2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}i:11;a:8:{s:3:\"_id\";s:7:\"6f01aa7\";s:5:\"title\";s:11:\"Text italic\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}i:12;a:10:{s:3:\"_id\";s:7:\"5702cc8\";s:5:\"title\";s:16:\"Desc Testimonial\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}i:13;a:8:{s:3:\"_id\";s:7:\"2260201\";s:5:\"title\";s:3:\"404\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:156;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:96;s:5:\"sizes\";a:0:{}}}i:14;a:8:{s:3:\"_id\";s:7:\"ff23f0d\";s:5:\"title\";s:7:\"Pricing\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:52;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:42;s:5:\"sizes\";a:0:{}}}i:15;a:7:{s:3:\"_id\";s:7:\"b31596a\";s:5:\"title\";s:12:\"Phone Number\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:20:\"button_border_border\";s:5:\"solid\";s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";s:8:\"isLinked\";b:1;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"40\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:11:\"__globals__\";a:23:{s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:17:\"link_normal_color\";s:24:\"globals/colors?id=accent\";s:16:\"link_hover_color\";s:25:\"globals/colors?id=primary\";s:8:\"h1_color\";s:25:\"globals/colors?id=primary\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=primary\";s:8:\"h2_color\";s:25:\"globals/colors?id=primary\";s:24:\"h2_typography_typography\";s:31:\"globals/typography?id=secondary\";s:8:\"h3_color\";s:25:\"globals/colors?id=primary\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=7f517b0\";s:8:\"h4_color\";s:25:\"globals/colors?id=primary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=4e452f7\";s:8:\"h5_color\";s:24:\"globals/colors?id=accent\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=997f697\";s:8:\"h6_color\";s:25:\"globals/colors?id=primary\";s:24:\"h6_typography_typography\";s:29:\"globals/typography?id=1660fa3\";s:23:\"button_background_color\";s:24:\"globals/colors?id=accent\";s:17:\"button_text_color\";s:25:\"globals/colors?id=e5c8540\";s:28:\"button_typography_typography\";s:29:\"globals/typography?id=a48ae84\";s:23:\"button_hover_text_color\";s:0:\"\";s:29:\"button_hover_background_color\";s:0:\"\";s:32:\"form_label_typography_typography\";s:0:\"\";s:16:\"form_label_color\";s:25:\"globals/colors?id=primary\";}s:10:\"body_color\";s:7:\"#7A7A7A\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:5:\"Inter\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"300\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:17:\"link_normal_color\";s:7:\"#E17141\";s:16:\"link_hover_color\";s:7:\"#06685F\";s:8:\"h1_color\";s:7:\"#06685F\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:54;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"600\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:8:\"h2_color\";s:7:\"#06685F\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"600\";s:25:\"h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:8:\"h3_color\";s:7:\"#06685F\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"600\";s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:8:\"h4_color\";s:7:\"#06685F\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"600\";s:25:\"h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:8:\"h5_color\";s:7:\"#E17141\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:5:\"Inter\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"500\";s:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#06685F\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"600\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:5:\"Inter\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"600\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:29:\"button_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#E17141\";s:23:\"button_hover_text_color\";s:7:\"#FFFFFF\";s:29:\"button_hover_background_color\";s:7:\"#E17141\";s:16:\"form_label_color\";s:7:\"#06685F\";s:32:\"form_label_typography_typography\";s:6:\"custom\";s:33:\"form_label_typography_font_family\";s:16:\"Playfair Display\";s:31:\"form_label_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:33:\"form_label_typography_font_weight\";s:3:\"600\";s:33:\"form_label_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.6000000000000001;s:5:\"sizes\";a:0:{}}s:24:\"form_field_border_border\";s:5:\"solid\";s:23:\"form_field_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:23:\"form_field_border_color\";s:7:\"#E1E1E1\";s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";s:8:\"isLinked\";b:1;}s:21:\"button_padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"18\";s:5:\"right\";s:2:\"32\";s:6:\"bottom\";s:2:\"18\";s:4:\"left\";s:2:\"32\";s:8:\"isLinked\";b:0;}}'),(278,61,'_elementor_data','[]'),(279,61,'_elementor_page_assets','a:0:{}'),(280,62,'_wp_attached_file','2023/07/professional-providing-psychological-counseling-indoors.jpg'),(281,62,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1125;s:4:\"file\";s:67:\"2023/07/professional-providing-psychological-counseling-indoors.jpg\";s:8:\"filesize\";i:303618;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:67:\"professional-providing-psychological-counseling-indoors-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11362;}s:5:\"large\";a:5:{s:4:\"file\";s:68:\"professional-providing-psychological-counseling-indoors-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63153;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"professional-providing-psychological-counseling-indoors-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7555;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:67:\"professional-providing-psychological-counseling-indoors-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39900;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:68:\"professional-providing-psychological-counseling-indoors-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126891;}}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:{}}}'),(282,63,'_wp_attached_file','2023/07/african-man-in-mental-health-consultation.jpg'),(283,63,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:53:\"2023/07/african-man-in-mental-health-consultation.jpg\";s:8:\"filesize\";i:375552;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"african-man-in-mental-health-consultation-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18564;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"african-man-in-mental-health-consultation-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108830;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"african-man-in-mental-health-consultation-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9916;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"african-man-in-mental-health-consultation-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70021;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:55:\"african-man-in-mental-health-consultation-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:201595;}}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:{}}}'),(284,64,'_elementor_edit_mode','builder'),(285,64,'_elementor_template_type','page'),(286,62,'_elementor_source_image_hash','e087c006f42d6117c811eb592b7228355be5f511'),(287,63,'_elementor_source_image_hash','bf97ba7a2d011d3c9cd3ad83fcc403f3ddf2f4c2'),(288,64,'_elementor_version','3.14.1'),(289,64,'_elementor_data','[{\"id\":\"419f7c90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"258980a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7479d2a7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45a58784\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79667c10\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Name\",\"mf_input_name\":\"mf-first-name\",\"mf_input_placeholder\":\"Your Name\",\"mf_input_min_length\":1,\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Helvetica\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required\":\"\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=1660fa3\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-text\"}],\"isInner\":true},{\"id\":\"6367697d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"940f64b\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Email\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"Your Email\",\"mf_input_required\":\"\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Helvetica\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"show_login_email\":\"\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=1660fa3\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-email\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66434301\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73279140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"217d16bd\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Telephone\",\"mf_input_name\":\"mf-telephone\",\"mf_input_placeholder\":\"Your Phone\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Helvetica\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=1660fa3\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-telephone\"}],\"isInner\":true},{\"id\":\"bd732d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c13ce3\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Date\",\"mf_input_name\":\"mf-date\",\"mf_input_placeholder\":\"Date\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_disable_date_list\":[],\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Helvetica\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=1660fa3\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-date\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6aefd455\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40c3d794\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"151e3ad8\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Type\",\"mf_input_name\":\"mf-select\",\"mf_input_placeholder\":\"Type Counseling\",\"mf_input_list\":[{\"mf_input_option_text\":\"Online Counseling\",\"mf_input_option_value\":\"value-1\",\"_id\":\"4888e71\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"},{\"mf_input_option_text\":\"Offline Counseling\",\"mf_input_option_value\":\"value-2\",\"_id\":\"f9ff265\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"}],\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_place_holder_typography_typography\":\"custom\",\"mf_input_place_holder_typography_font_family\":\"Inter\",\"mf_input_place_holder_typography_font_weight\":\"300\",\"mf_input_placeholder_color\":\"#7A7A7A\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"mf_input_place_holder_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_color\":\"\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_select_option_colorhover\":\"\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=1660fa3\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=7f7fd94\"},\"mf_input_label_color\":\"#06685F\",\"mf_input_place_holder_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"mf_select_option_colorhover\":\"#E17141\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Playfair Display\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"600\",\"mf_input_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"mf_input_upload_csv\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"mf_select_option_backgroundnormal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundnormal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundnormal_slideshow_gallery\":[],\"mf_select_option_backgroundhover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundhover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundhover_slideshow_gallery\":[],\"mf_select_option_backgroundactive_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundactive_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundactive_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-select\"}],\"isInner\":true},{\"id\":\"7b22499c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4592a6b5\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Service\",\"mf_input_name\":\"mf-select\",\"mf_input_placeholder\":\"Select Service\",\"mf_input_list\":[{\"mf_input_option_text\":\"Stress Management\",\"mf_input_option_value\":\"value-1\",\"_id\":\"4888e71\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"},{\"mf_input_option_text\":\"Depression Problem\",\"mf_input_option_value\":\"value-2\",\"_id\":\"f9ff265\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"},{\"mf_input_option_text\":\"Family Counseling\",\"mf_input_option_value\":\"value-3\",\"_id\":\"b3a0820\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"},{\"mf_input_option_text\":\"Anxiety Disorder\",\"mf_input_option_value\":\"value-4\",\"_id\":\"7fc25d8\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"},{\"mf_input_option_text\":\"Couple Counseling\",\"mf_input_option_value\":\"value-5\",\"_id\":\"97022cf\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"}],\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#7A7A7A\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_color\":\"\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_select_option_colorhover\":\"\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=1660fa3\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=7f7fd94\"},\"mf_input_label_color\":\"#06685F\",\"mf_select_option_colorhover\":\"#E17141\",\"mf_input_place_holder_typography_typography\":\"custom\",\"mf_input_place_holder_typography_font_family\":\"Inter\",\"mf_input_place_holder_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_place_holder_typography_font_weight\":\"300\",\"mf_input_place_holder_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Playfair Display\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"600\",\"mf_input_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"mf_input_upload_csv\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"mf_select_option_backgroundnormal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundnormal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundnormal_slideshow_gallery\":[],\"mf_select_option_backgroundhover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundhover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundhover_slideshow_gallery\":[],\"mf_select_option_backgroundactive_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundactive_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundactive_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-select\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"20223cf6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52967799\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b0d3bcf\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Additional Details\",\"mf_input_name\":\"mf-comment\",\"mf_input_placeholder\":\"Additional Details\",\"mf_input_required\":\"\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Helvetica\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_textarea_field_height\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=1660fa3\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-textarea\"},{\"id\":\"7105f2f1\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"Make Appointment\",\"mf_btn_align\":\"left\",\"mf_btn_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_box_shadow_group_box_shadow_type\":\"yes\",\"mf_btn_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(66,133,244,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_hidden_input\":[],\"__globals__\":{\"mf_btn_bg_color_color\":\"globals\\/colors?id=accent\",\"mf_btn_typography_typography\":\"globals\\/typography?id=a48ae84\"},\"mf_btn_align_mobile\":\"justify\",\"mf_btn_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"mf_btn_icon\":{\"value\":\"\",\"library\":\"\"},\"mf_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_slideshow_gallery\":[],\"mf_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(290,65,'_elementor_edit_mode','builder'),(291,65,'_elementor_template_type','page'),(292,65,'_elementor_version','3.14.1'),(293,65,'_elementor_data','[{\"id\":\"419f7c90\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"258980a3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7479d2a7\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45a58784\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79667c10\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Name\",\"mf_input_name\":\"mf-first-name\",\"mf_input_placeholder\":\"Your Name\",\"mf_input_min_length\":1,\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Helvetica\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required\":\"\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=1660fa3\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-text\"}],\"isInner\":true},{\"id\":\"6367697d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"940f64b\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Email\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"Your Email\",\"mf_input_required\":\"\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Helvetica\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"show_login_email\":\"\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=1660fa3\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-email\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"66434301\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73279140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"217d16bd\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Telephone\",\"mf_input_name\":\"mf-telephone\",\"mf_input_placeholder\":\"Your Phone\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Helvetica\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=1660fa3\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-telephone\"}],\"isInner\":true},{\"id\":\"bd732d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c13ce3\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Date\",\"mf_input_name\":\"mf-date\",\"mf_input_placeholder\":\"Date\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_disable_date_list\":[],\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Helvetica\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=1660fa3\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-date\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6aefd455\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40c3d794\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"151e3ad8\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Type\",\"mf_input_name\":\"mf-select\",\"mf_input_placeholder\":\"Type Counseling\",\"mf_input_list\":[{\"mf_input_option_text\":\"Online Counseling\",\"mf_input_option_value\":\"value-1\",\"_id\":\"4888e71\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"},{\"mf_input_option_text\":\"Offline Counseling\",\"mf_input_option_value\":\"value-2\",\"_id\":\"f9ff265\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"}],\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_place_holder_typography_typography\":\"custom\",\"mf_input_place_holder_typography_font_family\":\"Inter\",\"mf_input_place_holder_typography_font_weight\":\"300\",\"mf_input_placeholder_color\":\"#7A7A7A\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"mf_input_place_holder_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"__globals__\":{\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_color\":\"\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_select_option_colorhover\":\"\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=1660fa3\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=7f7fd94\"},\"mf_input_label_color\":\"#06685F\",\"mf_input_place_holder_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"mf_select_option_colorhover\":\"#E17141\",\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Playfair Display\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"600\",\"mf_input_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"mf_input_upload_csv\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"mf_select_option_backgroundnormal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundnormal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundnormal_slideshow_gallery\":[],\"mf_select_option_backgroundhover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundhover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundhover_slideshow_gallery\":[],\"mf_select_option_backgroundactive_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundactive_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundactive_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-select\"}],\"isInner\":true},{\"id\":\"7b22499c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4592a6b5\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Service\",\"mf_input_name\":\"mf-select\",\"mf_input_placeholder\":\"Select Service\",\"mf_input_list\":[{\"mf_input_option_text\":\"Stress Management\",\"mf_input_option_value\":\"value-1\",\"_id\":\"4888e71\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"},{\"mf_input_option_text\":\"Depression Problem\",\"mf_input_option_value\":\"value-2\",\"_id\":\"f9ff265\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"},{\"mf_input_option_text\":\"Family Counseling\",\"mf_input_option_value\":\"value-3\",\"_id\":\"b3a0820\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"},{\"mf_input_option_text\":\"Anxiety Disorder\",\"mf_input_option_value\":\"value-4\",\"_id\":\"7fc25d8\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"},{\"mf_input_option_text\":\"Couple Counseling\",\"mf_input_option_value\":\"value-5\",\"_id\":\"97022cf\",\"mf_input_option_status\":\"\",\"mf_input_option_selected\":\"\"}],\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#7A7A7A\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_color\":\"\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_select_option_colorhover\":\"\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=1660fa3\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=7f7fd94\"},\"mf_input_label_color\":\"#06685F\",\"mf_select_option_colorhover\":\"#E17141\",\"mf_input_place_holder_typography_typography\":\"custom\",\"mf_input_place_holder_typography_font_family\":\"Inter\",\"mf_input_place_holder_typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_place_holder_typography_font_weight\":\"300\",\"mf_input_place_holder_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"mf_input_label_typography_typography\":\"custom\",\"mf_input_label_typography_font_family\":\"Playfair Display\",\"mf_input_label_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"mf_input_label_typography_font_weight\":\"600\",\"mf_input_label_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"mf_input_upload_csv\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"mf_select_option_backgroundnormal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundnormal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundnormal_slideshow_gallery\":[],\"mf_select_option_backgroundhover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundhover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundhover_slideshow_gallery\":[],\"mf_select_option_backgroundactive_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundactive_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_select_option_backgroundactive_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-select\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"20223cf6\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52967799\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b0d3bcf\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Additional Details\",\"mf_input_name\":\"mf-comment\",\"mf_input_placeholder\":\"Additional Details\",\"mf_input_required\":\"\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_color\":\"#272B36\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_typgraphy_typography\":\"custom\",\"mf_input_typgraphy_font_family\":\"Helvetica\",\"mf_input_typgraphy_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_typgraphy_font_weight\":\"400\",\"mf_input_typgraphy_line_height\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_placeholder_color\":\"#848E9F\",\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_textarea_field_height\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=1660fa3\"},\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_label_color\":\"#000E44\",\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-textarea\"},{\"id\":\"7105f2f1\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"Make Appointment\",\"mf_btn_align\":\"left\",\"mf_btn_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_box_shadow_group_box_shadow_type\":\"yes\",\"mf_btn_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(66,133,244,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_hidden_input\":[],\"__globals__\":{\"mf_btn_bg_color_color\":\"globals\\/colors?id=accent\",\"mf_btn_typography_typography\":\"globals\\/typography?id=a48ae84\"},\"mf_btn_align_mobile\":\"justify\",\"mf_btn_text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"mf_btn_icon\":{\"value\":\"\",\"library\":\"\"},\"mf_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_slideshow_gallery\":[],\"mf_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(294,64,'_elementor_page_assets','a:0:{}'),(295,64,'_wp_page_template','elementor_canvas'),(296,64,'envato_tk_source_kit','57'),(297,64,'envato_tk_source_index','3'),(298,66,'_wp_attached_file','2023/07/counsel-of-students.jpg'),(299,66,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:31:\"2023/07/counsel-of-students.jpg\";s:8:\"filesize\";i:327757;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"counsel-of-students-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17036;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"counsel-of-students-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90954;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"counsel-of-students-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9900;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"counsel-of-students-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59136;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"counsel-of-students-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167809;}}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:{}}}'),(300,67,'_wp_attached_file','2023/07/therapy-session-in-the-AK6AHJU.jpg'),(301,67,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1280;s:4:\"file\";s:42:\"2023/07/therapy-session-in-the-AK6AHJU.jpg\";s:8:\"filesize\";i:231375;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"therapy-session-in-the-AK6AHJU-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13513;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"therapy-session-in-the-AK6AHJU-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112337;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"therapy-session-in-the-AK6AHJU-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6661;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"therapy-session-in-the-AK6AHJU-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65441;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:44:\"therapy-session-in-the-AK6AHJU-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230260;}}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:{}}}'),(302,66,'_elementor_source_image_hash','21beae6da3158771231cf04d2bf7b26cc29d9745'),(303,67,'_elementor_source_image_hash','d515c613af83d3903e994e639c2a3bf9bfd5b208'),(304,68,'_wp_attached_file','2023/07/counsel-of-students-1.jpg'),(305,68,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:33:\"2023/07/counsel-of-students-1.jpg\";s:8:\"filesize\";i:327757;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"counsel-of-students-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17036;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"counsel-of-students-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90954;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"counsel-of-students-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9900;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"counsel-of-students-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59136;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"counsel-of-students-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167809;}}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:{}}}'),(306,69,'_wp_attached_file','2023/07/mental-health-concept-communication-session-of-woman-psychologist-and-client.jpg'),(307,70,'_wp_attached_file','2023/07/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg'),(308,69,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:88:\"2023/07/mental-health-concept-communication-session-of-woman-psychologist-and-client.jpg\";s:8:\"filesize\";i:368397;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:88:\"mental-health-concept-communication-session-of-woman-psychologist-and-client-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14737;}s:5:\"large\";a:5:{s:4:\"file\";s:89:\"mental-health-concept-communication-session-of-woman-psychologist-and-client-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91836;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:88:\"mental-health-concept-communication-session-of-woman-psychologist-and-client-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8793;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:88:\"mental-health-concept-communication-session-of-woman-psychologist-and-client-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57312;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:90:\"mental-health-concept-communication-session-of-woman-psychologist-and-client-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178900;}}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:{}}}'),(309,70,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:90:\"2023/07/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\";s:8:\"filesize\";i:368397;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:90:\"mental-health-concept-communication-session-of-woman-psychologist-and-client-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14737;}s:5:\"large\";a:5:{s:4:\"file\";s:91:\"mental-health-concept-communication-session-of-woman-psychologist-and-client-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91836;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:90:\"mental-health-concept-communication-session-of-woman-psychologist-and-client-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8793;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:90:\"mental-health-concept-communication-session-of-woman-psychologist-and-client-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57312;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:92:\"mental-health-concept-communication-session-of-woman-psychologist-and-client-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178900;}}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:{}}}'),(310,68,'_elementor_source_image_hash','21beae6da3158771231cf04d2bf7b26cc29d9745'),(311,71,'_wp_attached_file','2023/07/cropped-shot-of-psychotherapist-writing-on-clipboard-and-female-patient-sitting-on-couch.jpg'),(312,72,'_wp_attached_file','2023/07/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg'),(313,71,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1335;s:4:\"file\";s:100:\"2023/07/cropped-shot-of-psychotherapist-writing-on-clipboard-and-female-patient-sitting-on-couch.jpg\";s:8:\"filesize\";i:187607;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:100:\"cropped-shot-of-psychotherapist-writing-on-clipboard-and-female-patient-sitting-on-couch-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12511;}s:5:\"large\";a:5:{s:4:\"file\";s:101:\"cropped-shot-of-psychotherapist-writing-on-clipboard-and-female-patient-sitting-on-couch-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55157;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:100:\"cropped-shot-of-psychotherapist-writing-on-clipboard-and-female-patient-sitting-on-couch-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8029;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:100:\"cropped-shot-of-psychotherapist-writing-on-clipboard-and-female-patient-sitting-on-couch-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37804;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:102:\"cropped-shot-of-psychotherapist-writing-on-clipboard-and-female-patient-sitting-on-couch-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99007;}}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:{}}}'),(314,72,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:82:\"2023/07/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\";s:8:\"filesize\";i:435263;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:82:\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16715;}s:5:\"large\";a:5:{s:4:\"file\";s:83:\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107485;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:82:\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9719;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:82:\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67002;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:84:\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211179;}s:24:\"elementor_custom_820x920\";a:4:{s:4:\"file\";s:134:\"elementor/thumbs/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--q9grra0jgaorjgb1af0o4stqtimw5bfd8j0rgpgf00.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:920;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:{}}}'),(315,73,'_wp_attached_file','2023/07/mature-psychologist-posing-in-group-therapy.jpg'),(316,73,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:55:\"2023/07/mature-psychologist-posing-in-group-therapy.jpg\";s:8:\"filesize\";i:315636;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"mature-psychologist-posing-in-group-therapy-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16296;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"mature-psychologist-posing-in-group-therapy-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90429;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"mature-psychologist-posing-in-group-therapy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9487;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:55:\"mature-psychologist-posing-in-group-therapy-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58743;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:57:\"mature-psychologist-posing-in-group-therapy-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166723;}}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:{}}}'),(317,70,'_elementor_source_image_hash','219188b13589d8700c9c6e27a02886090eb457db'),(318,69,'_elementor_source_image_hash','219188b13589d8700c9c6e27a02886090eb457db'),(319,74,'_wp_attached_file','2023/07/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-1-1.jpg'),(320,74,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:85:\"2023/07/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-1-1.jpg\";s:8:\"filesize\";i:435263;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:85:\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-1-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16715;}s:5:\"large\";a:5:{s:4:\"file\";s:86:\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-1-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107485;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:85:\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9719;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:85:\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-1-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67002;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:87:\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-1-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211179;}}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:{}}}'),(321,71,'_elementor_source_image_hash','63f3be7a03478b209bc6328bf3fda952900eecba'),(322,72,'_elementor_source_image_hash','e1f7e686a02320ae8f4d2ce54954e743488d4ffe'),(323,73,'_elementor_source_image_hash','1aa3bfa1c67ef0da6f2efe2c2dab872058794a24'),(324,74,'_elementor_source_image_hash','e1f7e686a02320ae8f4d2ce54954e743488d4ffe'),(325,75,'_wp_attached_file','2023/07/image.jpg'),(326,75,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:17:\"2023/07/image.jpg\";s:8:\"filesize\";i:14303;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(327,75,'_elementor_source_image_hash','05f39f38dd687c96d6b62cf22dfaf1003d395b73'),(328,76,'_wp_attached_file','2023/07/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-e1624799493930.jpg'),(329,76,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1120;s:4:\"file\";s:96:\"2023/07/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-e1624799493930.jpg\";s:8:\"filesize\";i:367896;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:96:\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-e1624799493930-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12774;}s:5:\"large\";a:5:{s:4:\"file\";s:97:\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-e1624799493930-1024x573.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:573;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99717;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:96:\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-e1624799493930-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6952;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:96:\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-e1624799493930-768x430.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61310;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:97:\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-e1624799493930-1536x860.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:860;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202777;}}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:{}}}'),(330,77,'_wp_attached_file','2023/07/mental-health-concept-communication-session-of-woman-psychologist-and-client-2.jpg'),(331,77,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1334;s:4:\"file\";s:90:\"2023/07/mental-health-concept-communication-session-of-woman-psychologist-and-client-2.jpg\";s:8:\"filesize\";i:296278;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:90:\"mental-health-concept-communication-session-of-woman-psychologist-and-client-2-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14179;}s:5:\"large\";a:5:{s:4:\"file\";s:91:\"mental-health-concept-communication-session-of-woman-psychologist-and-client-2-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81425;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:90:\"mental-health-concept-communication-session-of-woman-psychologist-and-client-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8234;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:90:\"mental-health-concept-communication-session-of-woman-psychologist-and-client-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51961;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:92:\"mental-health-concept-communication-session-of-woman-psychologist-and-client-2-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153674;}}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:{}}}'),(332,78,'_wp_attached_file','2023/07/dot-bg.png'),(333,78,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:462;s:4:\"file\";s:18:\"2023/07/dot-bg.png\";s:8:\"filesize\";i:6718;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"dot-bg-300x72.png\";s:5:\"width\";i:300;s:6:\"height\";i:72;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1088;}s:5:\"large\";a:5:{s:4:\"file\";s:19:\"dot-bg-1024x246.png\";s:5:\"width\";i:1024;s:6:\"height\";i:246;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5794;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"dot-bg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:123;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:18:\"dot-bg-768x185.png\";s:5:\"width\";i:768;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2578;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"dot-bg-1536x370.png\";s:5:\"width\";i:1536;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5178;}}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:{}}}'),(334,79,'_wp_attached_file','2023/07/professional-therapist-working-with-fighting-young-couple.jpg'),(335,79,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:69:\"2023/07/professional-therapist-working-with-fighting-young-couple.jpg\";s:8:\"filesize\";i:235568;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"professional-therapist-working-with-fighting-young-couple-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13858;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"professional-therapist-working-with-fighting-young-couple-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69636;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"professional-therapist-working-with-fighting-young-couple-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8704;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:69:\"professional-therapist-working-with-fighting-young-couple-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46503;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:71:\"professional-therapist-working-with-fighting-young-couple-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124226;}}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:{}}}'),(336,76,'_elementor_source_image_hash','1cada8fa18b2c4e1dfb7228ecba3ee9095bfacb3'),(337,78,'_elementor_source_image_hash','6b4cab4b6342d3bf24a0688e8efba4cf456be9e4'),(338,77,'_elementor_source_image_hash','66baeee3bf098e982794275d2c2c83f8aa45f2b5'),(339,80,'_wp_attached_file','2023/07/man-in-stress.jpg'),(340,80,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:25:\"2023/07/man-in-stress.jpg\";s:8:\"filesize\";i:338825;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"man-in-stress-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15494;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"man-in-stress-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87072;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"man-in-stress-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9323;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"man-in-stress-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55647;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"man-in-stress-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167249;}}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:{}}}'),(341,79,'_elementor_source_image_hash','b147ea5c3f038cc3fb0ec7ca6b95c58bd8740900'),(342,81,'_elementor_edit_mode','builder'),(343,81,'_elementor_template_type','page'),(344,80,'_elementor_source_image_hash','f332897eb252c619277ad80e8fd94bd23fa5a5eb'),(345,81,'_elementor_version','3.14.1'),(346,81,'_elementor_data','[{\"id\":\"5041cb00\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17dca19c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48b5ca9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74e3f5c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68b16ce1\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Name\",\"mf_input_name\":\"mf-first-name\",\"mf_input_placeholder\":\"Your Name\",\"mf_input_min_length\":1,\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required\":\"\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=text\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\"},\"mf_input_label_status\":\"\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-text\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a4be435\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e711837\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"294ce6dc\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Email\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"Your Email\",\"mf_input_required\":\"\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"show_login_email\":\"\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=text\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\"},\"mf_input_label_status\":\"\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-email\"}],\"isInner\":true},{\"id\":\"46a31fc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2724add4\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Telephone\",\"mf_input_name\":\"mf-telephone\",\"mf_input_placeholder\":\"Your Phone\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=text\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\"},\"mf_input_label_status\":\"\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-telephone\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e39b1a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3853a2e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d105c8a\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Subject\",\"mf_input_name\":\"mf-text\",\"mf_input_placeholder\":\"Your Subject\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=text\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\"},\"mf_input_label_status\":\"\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-text\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2217babb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1cce3353\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a904abf\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Message\",\"mf_input_name\":\"mf-comment\",\"mf_input_placeholder\":\"Your Message\",\"mf_input_required\":\"\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_textarea_field_height\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=text\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\"},\"mf_input_label_status\":\"\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-textarea\"},{\"id\":\"54258e45\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"Submit Message\",\"mf_btn_align\":\"left\",\"mf_btn_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_box_shadow_group_box_shadow_type\":\"yes\",\"mf_btn_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(66,133,244,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_hidden_input\":[],\"__globals__\":{\"mf_btn_bg_color_color\":\"globals\\/colors?id=accent\",\"mf_btn_typography_typography\":\"globals\\/typography?id=a48ae84\"},\"mf_btn_icon\":{\"value\":\"\",\"library\":\"\"},\"mf_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_slideshow_gallery\":[],\"mf_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(347,82,'_elementor_edit_mode','builder'),(348,82,'_elementor_template_type','page'),(349,82,'_elementor_version','3.14.1'),(350,82,'_elementor_data','[{\"id\":\"5041cb00\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"background_background\":\"classic\",\"background_color\":\"#ffffff\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0,0,0,0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"15\",\"bottom\":\"35\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17dca19c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48b5ca9b\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74e3f5c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"20\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68b16ce1\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Name\",\"mf_input_name\":\"mf-first-name\",\"mf_input_placeholder\":\"Your Name\",\"mf_input_min_length\":1,\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required\":\"\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=text\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\"},\"mf_input_label_status\":\"\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-text\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5a4be435\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e711837\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"294ce6dc\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Email\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"Your Email\",\"mf_input_required\":\"\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"show_login_email\":\"\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=text\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\"},\"mf_input_label_status\":\"\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-email\"}],\"isInner\":true},{\"id\":\"46a31fc8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2724add4\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Telephone\",\"mf_input_name\":\"mf-telephone\",\"mf_input_placeholder\":\"Your Phone\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=text\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\"},\"mf_input_label_status\":\"\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-telephone\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"9e39b1a\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3853a2e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d105c8a\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Subject\",\"mf_input_name\":\"mf-text\",\"mf_input_placeholder\":\"Your Subject\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_color\":\"#555555\",\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=text\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\"},\"mf_input_label_status\":\"\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-text\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2217babb\",\"elType\":\"section\",\"settings\":{\"gap\":\"extended\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1cce3353\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a904abf\",\"elType\":\"widget\",\"settings\":{\"mf_input_label\":\"Message\",\"mf_input_name\":\"mf-comment\",\"mf_input_placeholder\":\"Your Message\",\"mf_input_required\":\"\",\"mf_input_label_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"mf_input_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"25\",\"bottom\":\"15\",\"left\":\"25\",\"isLinked\":false},\"mf_input_border_border\":\"solid\",\"mf_input_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"mf_input_border_color\":\"#ededed\",\"mf_input_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":5,\"spread\":0,\"color\":\"rgba(0,0,0,0.05)\"},\"mf_input_help_text_typography_typography\":\"custom\",\"mf_input_help_text_typography_font_family\":\"Helvetica\",\"mf_input_help_text_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"mf_input_help_text_typography_font_weight\":\"400\",\"mf_input_help_text_typography_font_style\":\"italic\",\"mf_input_help_text_typography_line_height\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"mf_input_help_text_padding\":{\"unit\":\"px\",\"top\":\"3\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_textarea_field_height\":{\"unit\":\"px\",\"size\":140,\"sizes\":[]},\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_required_indicator_color\":\"#FF0000\",\"mf_input_help_text_color\":\"#555555\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#FFFFFF00\",\"__globals__\":{\"mf_input_color\":\"globals\\/colors?id=primary\",\"mf_input_place_holder_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"mf_input_label_typography_typography\":\"globals\\/typography?id=text\",\"mf_input_label_color\":\"globals\\/colors?id=primary\",\"mf_input_typgraphy_typography\":\"globals\\/typography?id=text\",\"mf_input_placeholder_color\":\"globals\\/colors?id=text\"},\"mf_input_label_status\":\"\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"mf_input_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_slideshow_gallery\":[],\"mf_input_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_hover_slideshow_gallery\":[],\"mf_input_background_focus_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_input_background_focus_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-textarea\"},{\"id\":\"54258e45\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"Submit Message\",\"mf_btn_align\":\"left\",\"mf_btn_text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_box_shadow_group_box_shadow_type\":\"yes\",\"mf_btn_box_shadow_group_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(66,133,244,0.3)\"},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"mf_hidden_input\":[],\"__globals__\":{\"mf_btn_bg_color_color\":\"globals\\/colors?id=accent\",\"mf_btn_typography_typography\":\"globals\\/typography?id=a48ae84\"},\"mf_btn_icon\":{\"value\":\"\",\"library\":\"\"},\"mf_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_color_slideshow_gallery\":[],\"mf_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"mf_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(351,83,'_wp_attached_file','2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg'),(352,83,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:69:\"2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\";s:8:\"filesize\";i:284988;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"blonde-haired-psychoanalyst-helping-a-man-with-depression-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16173;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"blonde-haired-psychoanalyst-helping-a-man-with-depression-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83827;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"blonde-haired-psychoanalyst-helping-a-man-with-depression-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9495;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:69:\"blonde-haired-psychoanalyst-helping-a-man-with-depression-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55235;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:71:\"blonde-haired-psychoanalyst-helping-a-man-with-depression-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151283;}}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:{}}}'),(353,81,'_elementor_page_assets','a:0:{}'),(354,81,'_wp_page_template','elementor_canvas'),(355,81,'envato_tk_source_kit','57'),(356,81,'envato_tk_source_index','13'),(357,83,'_elementor_source_image_hash','fbb91a6a524b2771b9751cdbab6b43c50f5c1fa2'),(358,84,'_wp_attached_file','2023/07/female-psychologist-in-office-FHV8Q5Z.jpg'),(359,84,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:820;s:6:\"height\";i:1024;s:4:\"file\";s:49:\"2023/07/female-psychologist-in-office-FHV8Q5Z.jpg\";s:8:\"filesize\";i:288625;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"female-psychologist-in-office-FHV8Q5Z-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22836;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"female-psychologist-in-office-FHV8Q5Z-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9904;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"female-psychologist-in-office-FHV8Q5Z-768x959.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:959;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156575;}}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:{}}}'),(360,85,'_wp_attached_file','2023/07/couple-talking-at-therapy-session-with-male-therapist.jpg'),(361,85,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:65:\"2023/07/couple-talking-at-therapy-session-with-male-therapist.jpg\";s:8:\"filesize\";i:365345;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:65:\"couple-talking-at-therapy-session-with-male-therapist-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15169;}s:5:\"large\";a:5:{s:4:\"file\";s:66:\"couple-talking-at-therapy-session-with-male-therapist-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87921;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:65:\"couple-talking-at-therapy-session-with-male-therapist-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8697;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:65:\"couple-talking-at-therapy-session-with-male-therapist-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54693;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:67:\"couple-talking-at-therapy-session-with-male-therapist-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175549;}}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:{}}}'),(362,84,'_elementor_source_image_hash','bccf06df925dc732dc3f911c2d1060eee7b14587'),(363,86,'_wp_attached_file','2023/07/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg'),(364,86,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:79:\"2023/07/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\";s:8:\"filesize\";i:320660;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:79:\"smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16152;}s:5:\"large\";a:5:{s:4:\"file\";s:80:\"smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86903;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:79:\"smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9128;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:79:\"smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56708;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:81:\"smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160478;}}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:{}}}'),(365,85,'_elementor_source_image_hash','68e42de03213586b9dbf3a2586fb3a050afd49d3'),(366,87,'_wp_attached_file','2023/07/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg'),(367,87,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1386;s:4:\"file\";s:89:\"2023/07/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\";s:8:\"filesize\";i:419393;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:89:\"men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other--300x208.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:208;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15711;}s:5:\"large\";a:5:{s:4:\"file\";s:90:\"men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other--1024x710.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:710;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93121;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:89:\"men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other--150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8982;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:89:\"men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other--768x532.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:532;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58469;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:91:\"men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other--1536x1064.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1064;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190406;}}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:{}}}'),(368,86,'_elementor_source_image_hash','ae93023e6fd0531dc9fd473a735634de1e443166'),(369,88,'_wp_attached_file','2023/07/handshake-of-two-men-successful-business-contacts-after-a-good-deal.jpg'),(370,88,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1335;s:4:\"file\";s:79:\"2023/07/handshake-of-two-men-successful-business-contacts-after-a-good-deal.jpg\";s:8:\"filesize\";i:170731;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:79:\"handshake-of-two-men-successful-business-contacts-after-a-good-deal-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12403;}s:5:\"large\";a:5:{s:4:\"file\";s:80:\"handshake-of-two-men-successful-business-contacts-after-a-good-deal-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53037;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:79:\"handshake-of-two-men-successful-business-contacts-after-a-good-deal-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7031;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:79:\"handshake-of-two-men-successful-business-contacts-after-a-good-deal-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36826;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:81:\"handshake-of-two-men-successful-business-contacts-after-a-good-deal-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92547;}}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:{}}}'),(371,87,'_elementor_source_image_hash','00bf0c748a98faf29d3c7b7f689579aee023ba8a'),(372,89,'_wp_attached_file','2023/07/senior-patient-talking-to-psychologist.jpg'),(373,89,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1335;s:4:\"file\";s:50:\"2023/07/senior-patient-talking-to-psychologist.jpg\";s:8:\"filesize\";i:363516;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"senior-patient-talking-to-psychologist-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16526;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"senior-patient-talking-to-psychologist-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103513;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"senior-patient-talking-to-psychologist-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9046;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"senior-patient-talking-to-psychologist-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66563;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"senior-patient-talking-to-psychologist-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194405;}}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:{}}}'),(374,90,'_wp_attached_file','2023/07/RUUMCJY.png'),(375,90,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:284;s:4:\"file\";s:19:\"2023/07/RUUMCJY.png\";s:8:\"filesize\";i:12558;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"RUUMCJY-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12426;}}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:{}}}'),(376,88,'_elementor_source_image_hash','92f85b741b4931b6e1127d4e88790f695dc6523f'),(377,90,'_elementor_source_image_hash','000e5b0e0dd8aaa2c8fbf44f5ada89f821e24b29'),(378,91,'_wp_attached_file','2023/07/senior-patient-talking-to-psychologist-1.jpg'),(379,91,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1335;s:4:\"file\";s:52:\"2023/07/senior-patient-talking-to-psychologist-1.jpg\";s:8:\"filesize\";i:363516;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"senior-patient-talking-to-psychologist-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16526;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"senior-patient-talking-to-psychologist-1-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103513;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"senior-patient-talking-to-psychologist-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9046;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"senior-patient-talking-to-psychologist-1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66563;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"senior-patient-talking-to-psychologist-1-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194405;}}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:{}}}'),(380,89,'_elementor_source_image_hash','ed0cd10b1a1af8d89e215b7255149f4cd6a7eb6b'),(381,92,'_wp_attached_file','2023/07/MKLVKTE.jpg'),(382,92,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:320;s:6:\"height\";i:320;s:4:\"file\";s:19:\"2023/07/MKLVKTE.jpg\";s:8:\"filesize\";i:59237;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"MKLVKTE-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21485;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"MKLVKTE-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9655;}}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:{}}}'),(383,92,'_elementor_source_image_hash','3dc879d9d80ec3b33dde415d2e3426fff4e64cdb'),(384,91,'_elementor_source_image_hash','ed0cd10b1a1af8d89e215b7255149f4cd6a7eb6b'),(385,93,'_wp_attached_file','2023/07/logo-QQBEZ9C.png'),(386,93,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:723;s:6:\"height\";i:179;s:4:\"file\";s:24:\"2023/07/logo-QQBEZ9C.png\";s:8:\"filesize\";i:16076;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"logo-QQBEZ9C-300x74.png\";s:5:\"width\";i:300;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11080;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"logo-QQBEZ9C-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3286;}}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:{}}}'),(387,93,'_elementor_source_image_hash','0e987f3f3aa84868120599fcd58c1dec0eda1551'),(388,94,'_wp_attached_file','2023/07/psychologist-in-office-WAUZF95.jpg'),(389,94,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:820;s:6:\"height\";i:1024;s:4:\"file\";s:42:\"2023/07/psychologist-in-office-WAUZF95.jpg\";s:8:\"filesize\";i:169645;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"psychologist-in-office-WAUZF95-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16948;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"psychologist-in-office-WAUZF95-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8295;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"psychologist-in-office-WAUZF95-768x959.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:959;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90049;}}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:{}}}'),(390,94,'_elementor_source_image_hash','fc3ef2ce789cbb3e0f712d8c9a2dba29a91bc93e'),(391,95,'_wp_attached_file','2023/07/logo-QQBEZ9C-1.png'),(392,95,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:723;s:6:\"height\";i:179;s:4:\"file\";s:26:\"2023/07/logo-QQBEZ9C-1.png\";s:8:\"filesize\";i:16076;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"logo-QQBEZ9C-1-300x74.png\";s:5:\"width\";i:300;s:6:\"height\";i:74;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11080;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"logo-QQBEZ9C-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3286;}}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:{}}}'),(393,95,'_elementor_source_image_hash','0e987f3f3aa84868120599fcd58c1dec0eda1551'),(394,96,'_elementor_edit_mode','builder'),(395,96,'_elementor_template_type','page'),(396,96,'_elementor_version','3.14.1'),(397,96,'_elementor_data','[{\"id\":\"24fb7194\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"77\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-2.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"948ba94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10d33203\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"450b6e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d99e031\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"165b8bf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58737722\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c78c098\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Question\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76c3c24e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77e7cf40\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a7ce917\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f2a70b0\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\" How to Make an Appointment for Group Service?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"6c3aab0\"},{\"acc_title\":\"How Long Will My Treatment Go on For?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"3203035\",\"ekit_acc_is_active\":\"no\"},{\"acc_title\":\"What Payment Methods Are Available? \",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"eb62296\",\"ekit_acc_is_active\":\"\"}],\"ekit_accordion_open_first_slide\":\"\",\"ekit_accordion_left_icons\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"ekit_accordion_left_icon_actives\":{\"value\":\"fas fa-angle-up\",\"library\":\"fa-solid\"},\"ekit_accordion_background_background\":\"classic\",\"ekit_accordion_background_color\":\"#E17141\",\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_open_color\":\"#E7EBF0\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_background_close_color\":\"#FFFFFF\",\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_close_color\":\"#E7EBF0\",\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_accordion_section_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"ekit_accordion_title_color\":\"\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=text\",\"ekit_accordion_icon_color_close\":\"globals\\/colors?id=accent\",\"ekit_accordion_icon_color\":\"\",\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=1660fa3\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_background_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_close_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_accordion_right_icon_actives\":{\"value\":\"icon icon-up-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_title_color\":\"#FFFFFF\",\"ekit_accordion_border_radious_curve_shape_open\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_title_color_close\":\"#06685F\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_box_shadow_close_box_shadow_type\":\"yes\",\"ekit_accordion_box_shadow_close_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_accordion_content_color\":\"#7A7A7A\",\"ekit_accordion_icon_color_close\":\"#E17141\",\"ekit_accordion_icon_color\":\"#FFFFFF\",\"ekit_accordion_right_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_slideshow_gallery\":[],\"ekit_accordion_background_close_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_slideshow_gallery\":[],\"ekit_accordion_content_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_slideshow_gallery\":[],\"ekit_accordion_icon_box_open_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_close_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_slideshow_gallery\":[],\"ekit_accordion_closed_icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"6606437d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"626cea8b\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\" How to Make an Appointment for Group Service?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"6c3aab0\"},{\"acc_title\":\"How Long Will My Treatment Go on For?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"3203035\",\"ekit_acc_is_active\":\"no\"},{\"acc_title\":\"What Payment Methods Are Available? \",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"eb62296\",\"ekit_acc_is_active\":\"\"}],\"ekit_accordion_open_first_slide\":\"\",\"ekit_accordion_left_icons\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"ekit_accordion_left_icon_actives\":{\"value\":\"fas fa-angle-up\",\"library\":\"fa-solid\"},\"ekit_accordion_background_background\":\"classic\",\"ekit_accordion_background_color\":\"#E17141\",\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_open_color\":\"#E7EBF0\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_background_close_color\":\"#FFFFFF\",\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_close_color\":\"#E7EBF0\",\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_accordion_section_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"ekit_accordion_title_color\":\"\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=text\",\"ekit_accordion_icon_color_close\":\"globals\\/colors?id=accent\",\"ekit_accordion_icon_color\":\"\",\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=1660fa3\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_background_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_close_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_accordion_right_icon_actives\":{\"value\":\"icon icon-up-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_title_color\":\"#FFFFFF\",\"ekit_accordion_border_radious_curve_shape_open\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_title_color_close\":\"#06685F\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_box_shadow_close_box_shadow_type\":\"yes\",\"ekit_accordion_box_shadow_close_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_accordion_content_color\":\"#7A7A7A\",\"ekit_accordion_icon_color_close\":\"#E17141\",\"ekit_accordion_icon_color\":\"#FFFFFF\",\"ekit_accordion_right_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_slideshow_gallery\":[],\"ekit_accordion_background_close_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_slideshow_gallery\":[],\"ekit_accordion_content_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_slideshow_gallery\":[],\"ekit_accordion_icon_box_open_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_close_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_slideshow_gallery\":[],\"ekit_accordion_closed_icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b482625\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52c3b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1aa47c9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"363b2895\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77ecf003\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"9898b10\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"361abf7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ec51c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"480564ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"392eb27b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1fdfc5cc\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"619215b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8688a0\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"sg_content_readmore_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_content_comment_icon\":{\"value\":\"fas fa-comment\",\"library\":\"fa-solid\"},\"sg_content_meta_author_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"sg_content_meta_date_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"pagination_prev_icon\":{\"value\":\"jki jki-angle-left-solid\",\"library\":\"jkiticon\"},\"pagination_next_icon\":{\"value\":\"jki jki-angle-right-solid\",\"library\":\"jkiticon\"},\"pagination_icon\":{\"value\":\"\",\"library\":\"\"},\"st_wrapper_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_slideshow_gallery\":[],\"st_post_item_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_slideshow_gallery\":[],\"st_thumbnail_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_slideshow_gallery\":[],\"st_thumbnail_background_overlay_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_slideshow_gallery\":[],\"st_thumbnail_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_slideshow_gallery\":[],\"st_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_slideshow_gallery\":[],\"st_category_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_slideshow_gallery\":[],\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_readmore_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_slideshow_gallery\":[],\"st_readmore_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_slideshow_gallery\":[],\"st_preload_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_slideshow_gallery\":[],\"st_preload_dot_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_dot_background_background_slideshow_gallery\":[],\"st_pagination_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_slideshow_gallery\":[],\"st_pagination_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_slideshow_gallery\":[],\"st_pagination_disabled_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_slideshow_gallery\":[],\"st_nocontent_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(398,97,'_elementor_edit_mode','builder'),(399,97,'_elementor_template_type','page'),(400,98,'_elementor_edit_mode','builder'),(401,98,'_elementor_template_type','page'),(402,99,'_elementor_edit_mode','builder'),(403,99,'_elementor_template_type','page'),(404,99,'_elementor_version','3.14.1'),(405,99,'_elementor_data','[{\"id\":\"24fb7194\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"77\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-2.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"948ba94\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10d33203\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"450b6e4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d99e031\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"165b8bf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58737722\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5c78c098\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Question\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76c3c24e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77e7cf40\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a7ce917\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f2a70b0\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\" How to Make an Appointment for Group Service?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"6c3aab0\"},{\"acc_title\":\"How Long Will My Treatment Go on For?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"3203035\",\"ekit_acc_is_active\":\"no\"},{\"acc_title\":\"What Payment Methods Are Available? \",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"eb62296\",\"ekit_acc_is_active\":\"\"}],\"ekit_accordion_open_first_slide\":\"\",\"ekit_accordion_left_icons\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"ekit_accordion_left_icon_actives\":{\"value\":\"fas fa-angle-up\",\"library\":\"fa-solid\"},\"ekit_accordion_background_background\":\"classic\",\"ekit_accordion_background_color\":\"#E17141\",\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_open_color\":\"#E7EBF0\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_background_close_color\":\"#FFFFFF\",\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_close_color\":\"#E7EBF0\",\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_accordion_section_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"ekit_accordion_title_color\":\"\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=text\",\"ekit_accordion_icon_color_close\":\"globals\\/colors?id=accent\",\"ekit_accordion_icon_color\":\"\",\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=1660fa3\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_background_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_close_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_accordion_right_icon_actives\":{\"value\":\"icon icon-up-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_title_color\":\"#FFFFFF\",\"ekit_accordion_border_radious_curve_shape_open\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_title_color_close\":\"#06685F\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_box_shadow_close_box_shadow_type\":\"yes\",\"ekit_accordion_box_shadow_close_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_accordion_content_color\":\"#7A7A7A\",\"ekit_accordion_icon_color_close\":\"#E17141\",\"ekit_accordion_icon_color\":\"#FFFFFF\",\"ekit_accordion_right_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_slideshow_gallery\":[],\"ekit_accordion_background_close_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_slideshow_gallery\":[],\"ekit_accordion_content_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_slideshow_gallery\":[],\"ekit_accordion_icon_box_open_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_close_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_slideshow_gallery\":[],\"ekit_accordion_closed_icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"6606437d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"626cea8b\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\" How to Make an Appointment for Group Service?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"6c3aab0\"},{\"acc_title\":\"How Long Will My Treatment Go on For?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"3203035\",\"ekit_acc_is_active\":\"no\"},{\"acc_title\":\"What Payment Methods Are Available? \",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"eb62296\",\"ekit_acc_is_active\":\"\"}],\"ekit_accordion_open_first_slide\":\"\",\"ekit_accordion_left_icons\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"ekit_accordion_left_icon_actives\":{\"value\":\"fas fa-angle-up\",\"library\":\"fa-solid\"},\"ekit_accordion_background_background\":\"classic\",\"ekit_accordion_background_color\":\"#E17141\",\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_open_color\":\"#E7EBF0\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_background_close_color\":\"#FFFFFF\",\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_close_color\":\"#E7EBF0\",\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_accordion_section_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"ekit_accordion_title_color\":\"\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=text\",\"ekit_accordion_icon_color_close\":\"globals\\/colors?id=accent\",\"ekit_accordion_icon_color\":\"\",\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=1660fa3\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_background_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_close_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_accordion_right_icon_actives\":{\"value\":\"icon icon-up-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_title_color\":\"#FFFFFF\",\"ekit_accordion_border_radious_curve_shape_open\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_title_color_close\":\"#06685F\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_box_shadow_close_box_shadow_type\":\"yes\",\"ekit_accordion_box_shadow_close_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_accordion_content_color\":\"#7A7A7A\",\"ekit_accordion_icon_color_close\":\"#E17141\",\"ekit_accordion_icon_color\":\"#FFFFFF\",\"ekit_accordion_right_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_slideshow_gallery\":[],\"ekit_accordion_background_close_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_slideshow_gallery\":[],\"ekit_accordion_content_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_slideshow_gallery\":[],\"ekit_accordion_icon_box_open_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_close_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_slideshow_gallery\":[],\"ekit_accordion_closed_icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b482625\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52c3b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1aa47c9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"363b2895\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77ecf003\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"9898b10\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"361abf7a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ec51c57\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"480564ba\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"392eb27b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1fdfc5cc\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"619215b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8688a0\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"sg_content_readmore_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_content_comment_icon\":{\"value\":\"fas fa-comment\",\"library\":\"fa-solid\"},\"sg_content_meta_author_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"sg_content_meta_date_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"pagination_prev_icon\":{\"value\":\"jki jki-angle-left-solid\",\"library\":\"jkiticon\"},\"pagination_next_icon\":{\"value\":\"jki jki-angle-right-solid\",\"library\":\"jkiticon\"},\"pagination_icon\":{\"value\":\"\",\"library\":\"\"},\"st_wrapper_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_slideshow_gallery\":[],\"st_post_item_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_slideshow_gallery\":[],\"st_thumbnail_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_slideshow_gallery\":[],\"st_thumbnail_background_overlay_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_slideshow_gallery\":[],\"st_thumbnail_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_slideshow_gallery\":[],\"st_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_slideshow_gallery\":[],\"st_category_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_slideshow_gallery\":[],\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_readmore_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_slideshow_gallery\":[],\"st_readmore_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_slideshow_gallery\":[],\"st_preload_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_slideshow_gallery\":[],\"st_preload_dot_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_dot_background_background_slideshow_gallery\":[],\"st_pagination_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_slideshow_gallery\":[],\"st_pagination_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_slideshow_gallery\":[],\"st_pagination_disabled_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_slideshow_gallery\":[],\"st_nocontent_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(406,96,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(407,96,'_wp_page_template','elementor_header_footer'),(408,96,'envato_tk_source_kit','57'),(409,96,'envato_tk_source_index','10'),(410,100,'_wp_attached_file','2023/07/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up.jpg'),(411,100,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:84:\"2023/07/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up.jpg\";s:8:\"filesize\";i:281470;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:84:\"happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15094;}s:5:\"large\";a:5:{s:4:\"file\";s:85:\"happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75269;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:84:\"happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8780;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:84:\"happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49428;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:86:\"happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140453;}}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:{}}}'),(412,97,'_elementor_version','3.14.1');
INSERT INTO `wp_postmeta` VALUES (413,97,'_elementor_data','[{\"id\":\"2a82a08b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/cropped-shot-of-psychotherapist-writing-on-clipboard-and-female-patient-sitting-on-couch.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b838350\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7bdfb719\",\"elType\":\"widget\",\"settings\":{\"title\":\"Appointment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5388a236\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Appointment\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e53ea0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6948bca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1dd30888\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"642fdbd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a92d063\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Quality Services\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_height_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_readmore_button_icon\":{\"value\":\"fas fa-book\",\"library\":\"fa-solid\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"13b9012a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"274ca985\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-team-1-line\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Professional Team\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#E17141\",\"st_icon_height_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_readmore_button_icon\":{\"value\":\"fas fa-book\",\"library\":\"fa-solid\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"72ba602d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23aa789e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Dedicated Support\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_height_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_readmore_button_icon\":{\"value\":\"fas fa-book\",\"library\":\"fa-solid\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42000df\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f404787\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10d8a135\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"45b23b8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"189f6c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4490c546\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"59535628\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a08eacf\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ebc876b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1287e127\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8fc3c09\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make Appointment\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23f8318d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t Hesitate To Contact Us  For Better Information And Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dbcf80a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5c42ba5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b6c5941\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.509,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52468afc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":474,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":267,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"49ae3f73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.491,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6fd38bbd\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"547***1625933662809\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f546ac5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22a87e60\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61e481d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Price\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"align\":\"center\",\"header_size\":\"h5\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"300a3f8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choose Your Plan\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50aea3ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#7A7A7A\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7411e143\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49cf87f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"border_color\":\"#6B7C9326\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"box_shadow_box_shadow_type\":\"yes\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27e19758\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Plan\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6897532d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$35\",\"header_size\":\"span\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ff23f0d\",\"title_color\":\"globals\\/colors?id=secondary\"},\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f0d621f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Per Hour\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51dfb35d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Conseling\",\"_id\":\"fc279ac\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Evaluation of Psychological\",\"_id\":\"62e63ab\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Specific Advice Situation\",\"_id\":\"b182eb5\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Customer Support\",\"_id\":\"bd69b24\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"divider_color\":\"#6B7C9326\",\"icon_color\":\"#FF4255\",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b6b7c3f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#6B7C9326\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"330a8cdd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\",\"button_text_color\":\"\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#E17141\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"},{\"id\":\"60fb6c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_color\":\"#6B7C9326\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"5\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"box_shadow_box_shadow_type\":\"yes\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_color\":\"#E17141\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"649ce20c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family Plan\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"title_color\":\"#FFFFFF\",\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"683725d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"$65\",\"header_size\":\"span\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ff23f0d\",\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c0ab5e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Per Hour\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"text_color\":\"#E5E5E5\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1422f40\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Conseling\",\"_id\":\"fc279ac\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Evaluation of Psychological\",\"_id\":\"62e63ab\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Specific Advice Situation\",\"_id\":\"b182eb5\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Customer Support\",\"_id\":\"bd69b24\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"divider_color\":\"#FCFCFC26\",\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7763a00a\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FCFCFC26\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"47c221ee\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\",\"hover_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"button_text_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"},{\"id\":\"d5d0ea4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_color\":\"#6B7C9326\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"box_shadow_box_shadow_type\":\"yes\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"407b6845\",\"elType\":\"widget\",\"settings\":{\"title\":\"Group Plan\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63703c36\",\"elType\":\"widget\",\"settings\":{\"title\":\"$85\",\"header_size\":\"span\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ff23f0d\",\"title_color\":\"globals\\/colors?id=secondary\"},\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a2d4234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Per Hour\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6bfb675c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Conseling\",\"_id\":\"fc279ac\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Evaluation of Psychological\",\"_id\":\"62e63ab\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Specific Advice Situation\",\"_id\":\"b182eb5\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Customer Support\",\"_id\":\"bd69b24\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"divider_color\":\"#6B7C9326\",\"icon_color\":\"#FF4255\",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"57b7c5c3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#6B7C9326\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21a5b6bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\",\"button_text_color\":\"\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(414,98,'_elementor_version','3.14.1'),(415,101,'_wp_attached_file','2023/07/placeholder.png'),(416,98,'_elementor_data','[{\"id\":\"1a92181e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"80\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/man-in-stress.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"910abb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"537e7525\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4612d956\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2551a6a6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3127814a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d5338c3\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_pagination_typography_content_typography_typography\":\"globals\\/typography?id=a48ae84\",\"st_pagination_normal_background_background_color\":\"globals\\/colors?id=accent\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_thumbnail_container_height_responsive\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"st_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_mode\":\"loadmore\",\"st_pagination_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_pagination_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"st_pagination_width_responsive\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_pagination_normal_color_responsive\":\"#FFFFFF\",\"st_pagination_normal_background_background_background\":\"classic\",\"st_pagination_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_pagination_normal_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_pagination_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"st_pagination_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"st_pagination_width_responsive_tablet\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"st_pagination_width_responsive_mobile\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"sg_content_readmore_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_content_comment_icon\":{\"value\":\"fas fa-comment\",\"library\":\"fa-solid\"},\"sg_content_meta_author_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"sg_content_meta_date_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"pagination_prev_icon\":{\"value\":\"jki jki-angle-left-solid\",\"library\":\"jkiticon\"},\"pagination_next_icon\":{\"value\":\"jki jki-angle-right-solid\",\"library\":\"jkiticon\"},\"pagination_icon\":{\"value\":\"\",\"library\":\"\"},\"st_wrapper_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_slideshow_gallery\":[],\"st_post_item_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_slideshow_gallery\":[],\"st_thumbnail_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_slideshow_gallery\":[],\"st_thumbnail_background_overlay_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_slideshow_gallery\":[],\"st_thumbnail_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_slideshow_gallery\":[],\"st_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_slideshow_gallery\":[],\"st_category_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_slideshow_gallery\":[],\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_readmore_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_slideshow_gallery\":[],\"st_readmore_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_slideshow_gallery\":[],\"st_preload_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_slideshow_gallery\":[],\"st_preload_dot_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_dot_background_background_slideshow_gallery\":[],\"st_pagination_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_slideshow_gallery\":[],\"st_pagination_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_slideshow_gallery\":[],\"st_pagination_disabled_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_slideshow_gallery\":[],\"st_nocontent_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false},{\"id\":\"1cd906c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.869,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"372f0e14\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67d507c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e9a5930\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent Post\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57ee1e41\",\"elType\":\"widget\",\"settings\":{\"section_layout_options\":\"recent\",\"section_recent_post_limit\":3,\"icon_list\":[],\"show_feature_image\":\"yes\",\"show_post_icon\":\"\",\"show_post_meta\":\"yes\",\"show_date_meta\":\"yes\",\"date_meta__icons\":{\"value\":\"\",\"library\":\"\"},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#272B36\",\"feature_image_width\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"feature_image_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"feature_image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_post_list_meta_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"icon_typography_typography\":\"globals\\/typography?id=1660fa3\",\"ekit_post_list_meta_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"ekit_post_list_meta_content_color\":\"globals\\/colors?id=text\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icons\":{\"value\":\"fas fa-circle\",\"library\":\"regular\"},\"category_meta__icons\":{\"value\":\"icon icon-folder\",\"library\":\"ekiticons\"},\"list_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"list_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"list_bg_slideshow_gallery\":[],\"list_bg_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"list_bg_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"list_bg_hover_slideshow_gallery\":[],\"icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-post-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"252fe1e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/cropped-shot-of-psychotherapist-writing-on-clipboard-and-female-patient-sitting-on-couch.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.68000000000000005,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e60b91b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b0dd09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"24 Hours Emergency Call\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a624eb7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"392b2bf8\",\"elType\":\"widget\",\"settings\":{\"text\":\"(+021) 2336 278\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"background_color\":\"#FF4255\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"button_text_color\":\"#FFFFFF\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"27\",\"bottom\":\"15\",\"left\":\"27\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc6ef38\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ab5d2de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b969620\",\"elType\":\"widget\",\"settings\":{\"title\":\"Categories\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dafe58a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"_id\":\"59f5e7e\",\"icons\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"link\":\"5\",\"text\":\"\",\"list_bg_color\":\"\"},{\"icons\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"link\":\"9\",\"_id\":\"440e34d\",\"text\":\"\",\"list_bg_color\":\"\"},{\"icons\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"link\":\"7\",\"_id\":\"cfbec5e\",\"text\":\"\",\"list_bg_color\":\"\"},{\"icons\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"link\":\"11\",\"_id\":\"6e1c084\",\"text\":\"\",\"list_bg_color\":\"\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=primary\",\"text_color_hover\":\"globals\\/colors?id=secondary\",\"divider_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"divider\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"divider_color\":\"#E1E1E1\",\"icon_color\":\"#29A4FF\",\"text_color\":\"#000E44\",\"text_color_hover\":\"#29A4FF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-category-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(417,101,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2023/07/placeholder.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"placeholder-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"placeholder-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"placeholder-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}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:{}}}'),(418,100,'_elementor_source_image_hash','81a6ed52237bd590110f912a132e185f87acaf0d'),(419,101,'_elementor_source_image_hash','6abaa7a87d4aa466972b167a42a960173ea1e052'),(420,102,'_elementor_edit_mode','builder'),(421,102,'_elementor_template_type','page'),(422,103,'_elementor_edit_mode','builder'),(423,103,'_elementor_template_type','page'),(424,103,'_elementor_version','3.14.1'),(425,103,'_elementor_data','[{\"id\":\"1a92181e\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"80\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/man-in-stress.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"910abb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"537e7525\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4612d956\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Blog\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2551a6a6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3127814a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d5338c3\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\",\"st_pagination_typography_content_typography_typography\":\"globals\\/typography?id=a48ae84\",\"st_pagination_normal_background_background_color\":\"globals\\/colors?id=accent\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":35,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_thumbnail_container_height_responsive\":{\"unit\":\"px\",\"size\":460,\"sizes\":[]},\"st_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pagination_mode\":\"loadmore\",\"st_pagination_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_pagination_padding_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"st_pagination_width_responsive\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_pagination_normal_color_responsive\":\"#FFFFFF\",\"st_pagination_normal_background_background_background\":\"classic\",\"st_pagination_normal_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"st_pagination_normal_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_pagination_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"st_pagination_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"st_pagination_width_responsive_tablet\":{\"unit\":\"%\",\"size\":35,\"sizes\":[]},\"st_pagination_width_responsive_mobile\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"sg_content_readmore_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_content_comment_icon\":{\"value\":\"fas fa-comment\",\"library\":\"fa-solid\"},\"sg_content_meta_author_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"sg_content_meta_date_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"pagination_prev_icon\":{\"value\":\"jki jki-angle-left-solid\",\"library\":\"jkiticon\"},\"pagination_next_icon\":{\"value\":\"jki jki-angle-right-solid\",\"library\":\"jkiticon\"},\"pagination_icon\":{\"value\":\"\",\"library\":\"\"},\"st_wrapper_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_slideshow_gallery\":[],\"st_post_item_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_slideshow_gallery\":[],\"st_thumbnail_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_slideshow_gallery\":[],\"st_thumbnail_background_overlay_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_slideshow_gallery\":[],\"st_thumbnail_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_slideshow_gallery\":[],\"st_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_slideshow_gallery\":[],\"st_category_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_slideshow_gallery\":[],\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_readmore_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_slideshow_gallery\":[],\"st_readmore_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_slideshow_gallery\":[],\"st_preload_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_slideshow_gallery\":[],\"st_preload_dot_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_dot_background_background_slideshow_gallery\":[],\"st_pagination_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_slideshow_gallery\":[],\"st_pagination_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_slideshow_gallery\":[],\"st_pagination_disabled_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_slideshow_gallery\":[],\"st_nocontent_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":false},{\"id\":\"1cd906c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.869,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"372f0e14\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67d507c2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e9a5930\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent Post\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"57ee1e41\",\"elType\":\"widget\",\"settings\":{\"section_layout_options\":\"recent\",\"section_recent_post_limit\":3,\"icon_list\":[],\"show_feature_image\":\"yes\",\"show_post_icon\":\"\",\"show_post_meta\":\"yes\",\"show_date_meta\":\"yes\",\"date_meta__icons\":{\"value\":\"\",\"library\":\"\"},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#272B36\",\"feature_image_width\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"feature_image_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"feature_image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_post_list_meta_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"icon_typography_typography\":\"globals\\/typography?id=1660fa3\",\"ekit_post_list_meta_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"ekit_post_list_meta_content_color\":\"globals\\/colors?id=text\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icons\":{\"value\":\"fas fa-circle\",\"library\":\"regular\"},\"category_meta__icons\":{\"value\":\"icon icon-folder\",\"library\":\"ekiticons\"},\"list_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"list_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"list_bg_slideshow_gallery\":[],\"list_bg_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"list_bg_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"list_bg_hover_slideshow_gallery\":[],\"icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-post-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"252fe1e1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/cropped-shot-of-psychotherapist-writing-on-clipboard-and-female-patient-sitting-on-couch.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.68000000000000005,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e60b91b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b0dd09c\",\"elType\":\"widget\",\"settings\":{\"title\":\"24 Hours Emergency Call\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6a624eb7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"392b2bf8\",\"elType\":\"widget\",\"settings\":{\"text\":\"(+021) 2336 278\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"background_color\":\"#FF4255\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"button_text_color\":\"#FFFFFF\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"27\",\"bottom\":\"15\",\"left\":\"27\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3dc6ef38\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ab5d2de\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b969620\",\"elType\":\"widget\",\"settings\":{\"title\":\"Categories\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5dafe58a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"_id\":\"59f5e7e\",\"icons\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"link\":\"5\",\"text\":\"\",\"list_bg_color\":\"\"},{\"icons\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"link\":\"9\",\"_id\":\"440e34d\",\"text\":\"\",\"list_bg_color\":\"\"},{\"icons\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"link\":\"7\",\"_id\":\"cfbec5e\",\"text\":\"\",\"list_bg_color\":\"\"},{\"icons\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"link\":\"11\",\"_id\":\"6e1c084\",\"text\":\"\",\"list_bg_color\":\"\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=primary\",\"text_color_hover\":\"globals\\/colors?id=secondary\",\"divider_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"divider\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"divider_color\":\"#E1E1E1\",\"icon_color\":\"#29A4FF\",\"text_color\":\"#000E44\",\"text_color_hover\":\"#29A4FF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-category-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(426,105,'_wp_attached_file','2023/07/depression-2UJ6UY8.png'),(427,104,'_elementor_edit_mode','builder'),(428,105,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:284;s:4:\"file\";s:30:\"2023/07/depression-2UJ6UY8.png\";s:8:\"filesize\";i:14017;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"depression-2UJ6UY8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13275;}}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:{}}}'),(429,104,'_elementor_template_type','page'),(430,104,'_elementor_version','3.14.1'),(431,104,'_elementor_data','[{\"id\":\"2a82a08b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/cropped-shot-of-psychotherapist-writing-on-clipboard-and-female-patient-sitting-on-couch.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b838350\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7bdfb719\",\"elType\":\"widget\",\"settings\":{\"title\":\"Appointment\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5388a236\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Appointment\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e53ea0d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6948bca7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1dd30888\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"642fdbd7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4a92d063\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Quality Services\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_height_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_readmore_button_icon\":{\"value\":\"fas fa-book\",\"library\":\"fa-solid\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"13b9012a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"274ca985\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-team-1-line\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Professional Team\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#E17141\",\"st_icon_height_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_readmore_button_icon\":{\"value\":\"fas fa-book\",\"library\":\"fa-solid\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"72ba602d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23aa789e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Dedicated Support\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_height_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_readmore_button_icon\":{\"value\":\"fas fa-book\",\"library\":\"fa-solid\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"42000df\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f404787\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10d8a135\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"45b23b8e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"189f6c6\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"4490c546\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"59535628\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7a08eacf\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ebc876b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1287e127\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8fc3c09\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make Appointment\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23f8318d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t Hesitate To Contact Us  For Better Information And Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dbcf80a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"5c42ba5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b6c5941\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.509,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52468afc\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":474,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":267,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"49ae3f73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.491,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6fd38bbd\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"547***1625933662809\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f546ac5\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22a87e60\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"61e481d7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Price\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"align\":\"center\",\"header_size\":\"h5\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"300a3f8b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choose Your Plan\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50aea3ae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#7A7A7A\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7411e143\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49cf87f7\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"border_color\":\"#6B7C9326\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"box_shadow_box_shadow_type\":\"yes\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27e19758\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Plan\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6897532d\",\"elType\":\"widget\",\"settings\":{\"title\":\"$35\",\"header_size\":\"span\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ff23f0d\",\"title_color\":\"globals\\/colors?id=secondary\"},\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2f0d621f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Per Hour\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"51dfb35d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Conseling\",\"_id\":\"fc279ac\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Evaluation of Psychological\",\"_id\":\"62e63ab\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Specific Advice Situation\",\"_id\":\"b182eb5\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Customer Support\",\"_id\":\"bd69b24\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"divider_color\":\"#6B7C9326\",\"icon_color\":\"#FF4255\",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"b6b7c3f\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#6B7C9326\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"330a8cdd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\",\"button_text_color\":\"\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#E17141\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"},{\"id\":\"60fb6c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_color\":\"#6B7C9326\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"5\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"box_shadow_box_shadow_type\":\"yes\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_color\":\"#E17141\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"649ce20c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family Plan\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"title_color\":\"#FFFFFF\",\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"683725d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"$65\",\"header_size\":\"span\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ff23f0d\",\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c0ab5e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Per Hour\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"text_color\":\"#E5E5E5\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1422f40\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Conseling\",\"_id\":\"fc279ac\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Evaluation of Psychological\",\"_id\":\"62e63ab\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Specific Advice Situation\",\"_id\":\"b182eb5\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Customer Support\",\"_id\":\"bd69b24\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"divider_color\":\"#FCFCFC26\",\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7763a00a\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FCFCFC26\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"47c221ee\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\",\"hover_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"button_text_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"},{\"id\":\"d5d0ea4\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_color\":\"#6B7C9326\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"box_shadow_box_shadow_type\":\"yes\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"407b6845\",\"elType\":\"widget\",\"settings\":{\"title\":\"Group Plan\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63703c36\",\"elType\":\"widget\",\"settings\":{\"title\":\"$85\",\"header_size\":\"span\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ff23f0d\",\"title_color\":\"globals\\/colors?id=secondary\"},\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5a2d4234\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Per Hour\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6bfb675c\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Conseling\",\"_id\":\"fc279ac\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Evaluation of Psychological\",\"_id\":\"62e63ab\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Specific Advice Situation\",\"_id\":\"b182eb5\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Customer Support\",\"_id\":\"bd69b24\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"divider_color\":\"#6B7C9326\",\"icon_color\":\"#FF4255\",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"57b7c5c3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#6B7C9326\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"21a5b6bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\",\"button_text_color\":\"\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(432,105,'_elementor_source_image_hash','cce1d08a499a1a83ec212ec27b449690844b579f'),(433,98,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(434,98,'_wp_page_template','elementor_header_footer'),(435,98,'envato_tk_source_kit','57'),(436,98,'envato_tk_source_index','11'),(437,102,'_elementor_version','3.14.1'),(438,102,'_elementor_data','[{\"id\":\"2fdcc0a4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"88\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/handshake-of-two-men-successful-business-contacts-after-a-good-deal.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"62767aeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"196a9d9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c0608a4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d84a337\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"333644d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a27ffa5\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"687***1625904368186\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"67dbe858\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49d99ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fc64761\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s Ge In Touch\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60f37d2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2df0eb29\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"355fb26\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79fb5e1f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-apartment\",\"library\":\"ekiticons\"},\"ekit_icon_box_header_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_title_text\":\"Kuta, Badung\",\"ekit_icon_box_description_text\":\"Jl. Raya Kuta No.70, Kuta - Bali \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_color\":\"#06685F\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#7A7A7A\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#E17141\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_description_color\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=accent\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=4e452f7\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":101,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"3ea127bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b464635\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-apartment\",\"library\":\"ekiticons\"},\"ekit_icon_box_header_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_title_text\":\"Renon, Denpasar\",\"ekit_icon_box_description_text\":\"Jl. Raya Puputan No.9, Renon\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_color\":\"#06685F\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#7A7A7A\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#E17141\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_description_color\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=accent\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=4e452f7\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":101,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"1986edcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3c822c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"167cad61\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"ekit_icon_box_header_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_title_text\":\"Calling Support\",\"ekit_icon_box_description_text\":\"(+021) 2336 278\\n\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_content_valign\":\"bottom\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_color\":\"#06685F\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#7A7A7A\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#E17141\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_description_color\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=accent\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=4e452f7\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":101,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"4cb00aac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d59e6f7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-envelope2\",\"library\":\"ekiticons\"},\"ekit_icon_box_header_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_title_text\":\"Email Information\",\"ekit_icon_box_description_text\":\"support@domain.com\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_content_valign\":\"bottom\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_color\":\"#06685F\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#7A7A7A\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#E17141\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_description_color\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=accent\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=4e452f7\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":101,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"73f80ca3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"\"},\"color\":\"#E1E1E1\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b3489e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=4e452f7\",\"title_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c103fa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=text\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_color\":\"#29A4FF\",\"view\":\"inline\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa8c8d2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3dc24b9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28e7609a\",\"elType\":\"widget\",\"settings\":{\"address\":\"Jalan Raya Kuta, Bali\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(439,97,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(440,97,'_wp_page_template','elementor_header_footer'),(441,97,'envato_tk_source_kit','57'),(442,97,'envato_tk_source_index','7'),(443,106,'_elementor_edit_mode','builder'),(444,106,'_elementor_template_type','page'),(445,106,'_elementor_version','3.14.1'),(446,106,'_elementor_data','[{\"id\":\"2fdcc0a4\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"88\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/handshake-of-two-men-successful-business-contacts-after-a-good-deal.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"62767aeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"196a9d9e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c0608a4\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d84a337\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"333644d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a27ffa5\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"687***1625904368186\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"67dbe858\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49d99ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fc64761\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s Ge In Touch\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60f37d2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2df0eb29\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"355fb26\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79fb5e1f\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-apartment\",\"library\":\"ekiticons\"},\"ekit_icon_box_header_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_title_text\":\"Kuta, Badung\",\"ekit_icon_box_description_text\":\"Jl. Raya Kuta No.70, Kuta - Bali \",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_color\":\"#06685F\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#7A7A7A\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#E17141\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_description_color\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=accent\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=4e452f7\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":101,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"3ea127bd\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b464635\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-apartment\",\"library\":\"ekiticons\"},\"ekit_icon_box_header_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_title_text\":\"Renon, Denpasar\",\"ekit_icon_box_description_text\":\"Jl. Raya Puputan No.9, Renon\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_color\":\"#06685F\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#7A7A7A\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#E17141\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_description_color\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=accent\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=4e452f7\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":101,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"1986edcf\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3c822c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"167cad61\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"ekit_icon_box_header_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_title_text\":\"Calling Support\",\"ekit_icon_box_description_text\":\"(+021) 2336 278\\n\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_content_valign\":\"bottom\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_color\":\"#06685F\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#7A7A7A\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#E17141\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_description_color\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=accent\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=4e452f7\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":101,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"},{\"id\":\"4cb00aac\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d59e6f7\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-envelope2\",\"library\":\"ekiticons\"},\"ekit_icon_box_header_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_title_text\":\"Email Information\",\"ekit_icon_box_description_text\":\"support@domain.com\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_title_size\":\"h4\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_group_color\":\"#FFFFFF\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_content_valign\":\"bottom\",\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_color\":\"#06685F\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color\":\"#7A7A7A\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_icon_primary_color\":\"#FFFFFF\",\"ekit_icon_box_icon_secondary_color_normal\":\"#E17141\",\"ekit_icon_box_icon_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_icon_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true,\"size\":15},\"__globals__\":{\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_description_color\":\"globals\\/colors?id=text\",\"ekit_icon_box_icon_secondary_color_normal\":\"globals\\/colors?id=accent\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=4e452f7\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":101,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"73f80ca3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"\"},\"color\":\"#E1E1E1\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3b3489e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=4e452f7\",\"title_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c103fa\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"globals\\/colors?id=text\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_color\":\"#29A4FF\",\"view\":\"inline\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3aa8c8d2\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-50\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3dc24b9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28e7609a\",\"elType\":\"widget\",\"settings\":{\"address\":\"Jalan Raya Kuta, Bali\",\"zoom\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":480,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false}]'),(447,107,'_elementor_edit_mode','builder'),(448,107,'_elementor_template_type','page'),(449,102,'_elementor_page_assets','a:0:{}'),(450,102,'_wp_page_template','elementor_header_footer'),(451,102,'envato_tk_source_kit','57'),(452,102,'envato_tk_source_index','14'),(453,108,'_wp_attached_file','2023/07/UUFGSJH.jpg'),(454,108,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:320;s:6:\"height\";i:320;s:4:\"file\";s:19:\"2023/07/UUFGSJH.jpg\";s:8:\"filesize\";i:57515;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"UUFGSJH-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20997;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"UUFGSJH-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9498;}}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:{}}}'),(455,108,'_elementor_source_image_hash','4b857fb3fae779985786faf6f79cf3b86ddad141'),(456,107,'_elementor_version','3.14.1'),(457,107,'_elementor_data','[{\"id\":\"bf91aec\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"125\",\"right\":\"10\",\"bottom\":\"125\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height\":\"full\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_color\":\"#000000\",\"background_position_tablet\":\"center center\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"413318bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72767a9f\",\"elType\":\"widget\",\"settings\":{\"title\":\"404\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=2260201\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"span\",\"title_color\":\"#676CDB\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11614548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Page Not Found\",\"align\":\"center\",\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d082bcc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The page you are looking for might have been removed had its name changed or is temporarily unavailable\\n\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77110336\",\"elType\":\"widget\",\"settings\":{\"text\":\"Back To Home\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(458,109,'_wp_attached_file','2023/07/couple-talking-to-family-counselor.jpg'),(459,109,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1335;s:4:\"file\";s:46:\"2023/07/couple-talking-to-family-counselor.jpg\";s:8:\"filesize\";i:352487;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"couple-talking-to-family-counselor-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15696;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"couple-talking-to-family-counselor-1024x684.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90024;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"couple-talking-to-family-counselor-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9296;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"couple-talking-to-family-counselor-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57831;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"couple-talking-to-family-counselor-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175349;}}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:{}}}'),(460,110,'_elementor_edit_mode','builder'),(461,110,'_elementor_template_type','section'),(462,111,'_elementor_edit_mode','builder'),(463,111,'_elementor_template_type','page'),(464,111,'_elementor_version','3.14.1'),(465,111,'_elementor_data','[{\"id\":\"bf91aec\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"125\",\"right\":\"10\",\"bottom\":\"125\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"content_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"height\":\"full\",\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_color\":\"#000000\",\"background_position_tablet\":\"center center\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"413318bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72767a9f\",\"elType\":\"widget\",\"settings\":{\"title\":\"404\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=secondary\",\"typography_typography\":\"globals\\/typography?id=2260201\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-20\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"span\",\"title_color\":\"#676CDB\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"11614548\",\"elType\":\"widget\",\"settings\":{\"title\":\"Page Not Found\",\"align\":\"center\",\"align_mobile\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3d082bcc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"The page you are looking for might have been removed had its name changed or is temporarily unavailable\\n\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77110336\",\"elType\":\"widget\",\"settings\":{\"text\":\"Back To Home\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(466,107,'_elementor_page_assets','a:0:{}'),(467,107,'_wp_page_template','elementor_header_footer'),(468,107,'envato_tk_source_kit','57'),(469,107,'envato_tk_source_index','17'),(470,110,'_elementor_version','3.14.1'),(471,110,'_elementor_data','[{\"id\":\"9ca6fc1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#001312\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c4fba02\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42d9fe23\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20776be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":26.812000000000001,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"50\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_color\":\"#022E2C\",\"__globals__\":{\"background_color\":\"\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"159f7ede\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"93\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/logo-QQBEZ9C.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cfc9738\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14d796af\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Raya Kuta No.70, Kuta\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"support@domain.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(+021) 2336 278\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"2fbefc33\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":25.818999999999999,\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"257fb286\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"title_color\":\"#FFFFFF\",\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"642df32e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Cases\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"23e9052\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"367568f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":17.280000000000001,\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"12b12ed2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ed9028e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Disclaimer\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"},{\"text\":\"Credits\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"1ec831fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":30.088999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a943cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c15aa76\",\"elType\":\"widget\",\"settings\":{\"ekit_mail_chimp_email_address_placeholder\":\"Your Email Address\",\"ekit_mail_chimp_email_icon_show\":\"\",\"ekit_mail_chimp_submit\":\"Subscribe\",\"ekit_mail_chimp_submit_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_mail_chimp_success_message\":\"Successfully listed this email\",\"ekit_mail_chimp_input_style_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"ekit_mail_chimp_input_style_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_mail_chimp_input_style_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":false},\"ekit_mail_chimp_input_style_width__switch\":\"yes\",\"ekit_mail_chimp_input_style_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_mail_chimp_input_style_margin_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_mail_chimp_input_style_placeholder_color\":\"#B7B7B7\",\"ekit_mail_chimp_button_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"ekit_mail_chimp_button_border_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_style_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"-120\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_mail_chimp_button_background_hover_background\":\"classic\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_input_style_placeholder_font_size_mobile\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_mail_chimp_input_style_background_background\":\"classic\",\"__globals__\":{\"ekit_mail_chimp_input_style_background_color\":\"\",\"ekit_mail_chimp_button_background_color\":\"globals\\/colors?id=accent\",\"ekit_mail_chimp_button_color\":\"\",\"ekit_mail_chimp_button_border_color\":\"\",\"ekit_mail_chimp_button_typography_typography\":\"globals\\/typography?id=a892a9f\",\"ekit_mail_chimp_input_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_mail_chimp_input_icon_background_background\":\"classic\",\"ekit_mail_chimp_input_label_typography_typography\":\"custom\",\"ekit_mail_chimp_input_label_typography_font_family\":\"Inter\",\"ekit_mail_chimp_input_label_typography_font_weight\":\"600\",\"ekit_mail_chimp_section_form_name_show\":\"\",\"ekit_mail_chimp_input_style_margin_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_mail_chimp_button_border_color\":\"#2843CF\",\"ekit_mail_chimp_submit_icon_show\":\"\",\"ekit_mail_chimp_button_style_use_width_height\":\"yes\",\"ekit_mail_chimp_button_width\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"ekit_mail_chimp_input_style_border_border\":\"solid\",\"ekit_mail_chimp_first_name_icons\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"ekit_mail_chimp_last_name_icons\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"ekit_mail_chimp_phone_icons\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"ekit_mail_chimp_email_icons\":{\"value\":\"icon icon-envelope\",\"library\":\"ekiticons\"},\"ekit_mail_chimp_input_style_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_mail_chimp_input_style_background_slideshow_gallery\":[],\"ekit_mail_chimp_button_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_mail_chimp_button_background_slideshow_gallery\":[],\"ekit_mail_chimp_button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_mail_chimp_button_background_hover_slideshow_gallery\":[],\"ekit_mail_chimp_input_icon_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_mail_chimp_input_icon_background_slideshow_gallery\":[],\"ekit_mail_chimp_success_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_mail_chimp_success_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_mail_chimp_success_bg_color_slideshow_gallery\":[],\"ekit_mail_chimp_error_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_mail_chimp_error_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_mail_chimp_error_bg_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-mail-chimp\"},{\"id\":\"7ccc6063\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d4e591\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7e37d33a\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"594d5659\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"332e7662\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2caac502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Psychology & Counseling Template Kit by Baliniz\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7f7fd94\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"53d3d2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7cc7c288\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 All rights reserved.\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7f7fd94\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(472,112,'_elementor_edit_mode','builder'),(473,112,'_elementor_template_type','page'),(474,109,'_elementor_source_image_hash','8dcff528a895325023bdae7bc06f44fa1b9d6641'),(475,113,'_elementor_edit_mode','builder'),(476,112,'_elementor_version','3.14.1'),(477,113,'_elementor_template_type','section'),(478,113,'_elementor_version','3.14.1'),(479,113,'_elementor_data','[{\"id\":\"9ca6fc1\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#001312\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c4fba02\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42d9fe23\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"20776be9\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":26.812000000000001,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"50\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_color\":\"#022E2C\",\"__globals__\":{\"background_color\":\"\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"159f7ede\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"93\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/logo-QQBEZ9C.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5cfc9738\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod \",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"align\":\"left\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"14d796af\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Jl. Raya Kuta No.70, Kuta\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"support@domain.com\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"(+021) 2336 278\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"2fbefc33\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":25.818999999999999,\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"257fb286\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"title_color\":\"#FFFFFF\",\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"642df32e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Cases\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"23e9052\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"367568f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":17.280000000000001,\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"12b12ed2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"header_size\":\"h4\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ed9028e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Disclaimer\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"},{\"text\":\"Credits\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"1ec831fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":30.088999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a943cbf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c15aa76\",\"elType\":\"widget\",\"settings\":{\"ekit_mail_chimp_email_address_placeholder\":\"Your Email Address\",\"ekit_mail_chimp_email_icon_show\":\"\",\"ekit_mail_chimp_submit\":\"Subscribe\",\"ekit_mail_chimp_submit_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_mail_chimp_success_message\":\"Successfully listed this email\",\"ekit_mail_chimp_input_style_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"ekit_mail_chimp_input_style_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_mail_chimp_input_style_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":false},\"ekit_mail_chimp_input_style_width__switch\":\"yes\",\"ekit_mail_chimp_input_style_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_mail_chimp_input_style_margin_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_mail_chimp_input_style_placeholder_color\":\"#B7B7B7\",\"ekit_mail_chimp_button_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"ekit_mail_chimp_button_border_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_style_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"-120\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_mail_chimp_button_background_hover_background\":\"classic\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_input_style_placeholder_font_size_mobile\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_mail_chimp_input_style_background_background\":\"classic\",\"__globals__\":{\"ekit_mail_chimp_input_style_background_color\":\"\",\"ekit_mail_chimp_button_background_color\":\"globals\\/colors?id=accent\",\"ekit_mail_chimp_button_color\":\"\",\"ekit_mail_chimp_button_border_color\":\"\",\"ekit_mail_chimp_button_typography_typography\":\"globals\\/typography?id=a892a9f\",\"ekit_mail_chimp_input_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_mail_chimp_input_icon_background_background\":\"classic\",\"ekit_mail_chimp_input_label_typography_typography\":\"custom\",\"ekit_mail_chimp_input_label_typography_font_family\":\"Inter\",\"ekit_mail_chimp_input_label_typography_font_weight\":\"600\",\"ekit_mail_chimp_section_form_name_show\":\"\",\"ekit_mail_chimp_input_style_margin_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_mail_chimp_button_border_color\":\"#2843CF\",\"ekit_mail_chimp_submit_icon_show\":\"\",\"ekit_mail_chimp_button_style_use_width_height\":\"yes\",\"ekit_mail_chimp_button_width\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"ekit_mail_chimp_input_style_border_border\":\"solid\",\"ekit_mail_chimp_first_name_icons\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"ekit_mail_chimp_last_name_icons\":{\"value\":\"icon icon-user\",\"library\":\"ekiticons\"},\"ekit_mail_chimp_phone_icons\":{\"value\":\"icon icon-phone-handset\",\"library\":\"ekiticons\"},\"ekit_mail_chimp_email_icons\":{\"value\":\"icon icon-envelope\",\"library\":\"ekiticons\"},\"ekit_mail_chimp_input_style_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_mail_chimp_input_style_background_slideshow_gallery\":[],\"ekit_mail_chimp_button_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_mail_chimp_button_background_slideshow_gallery\":[],\"ekit_mail_chimp_button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_mail_chimp_button_background_hover_slideshow_gallery\":[],\"ekit_mail_chimp_input_icon_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_mail_chimp_input_icon_background_slideshow_gallery\":[],\"ekit_mail_chimp_success_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_mail_chimp_success_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_mail_chimp_success_bg_color_slideshow_gallery\":[],\"ekit_mail_chimp_error_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_mail_chimp_error_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_mail_chimp_error_bg_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-mail-chimp\"},{\"id\":\"7ccc6063\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1d4e591\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"7e37d33a\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"594d5659\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"332e7662\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2caac502\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Psychology & Counseling Template Kit by Baliniz\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7f7fd94\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"53d3d2e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7cc7c288\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 All rights reserved.\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7f7fd94\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(480,112,'_elementor_data','[{\"id\":\"1ee49438\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"77\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-2.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"605ec21b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f7488a9\",\"elType\":\"widget\",\"settings\":{\"st_title_alignment_responsive\":\"center\",\"__globals__\":{\"st_title_normal_color_responsive\":\"\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\"},\"st_title_normal_color_responsive\":\"#FFFFFF\",\"st_title_normal_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_normal_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_normal_gradient_background_slideshow_gallery\":[],\"st_title_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_hover_gradient_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_title\"},{\"id\":\"2265136\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27c2ed12\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"align_mobile\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2590e067\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width\":\"initial\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4561461c\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-10\",\"left\":\"10\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_author_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_author_normal_color_responsive\":\"\"},\"st_author_normal_color_responsive\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_author\"},{\"id\":\"453341d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-calendar-alt\",\"library\":\"fa-regular\"},\"size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width\":\"initial\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4a683ebf\",\"elType\":\"widget\",\"settings\":{\"sg_date_format_custom\":\"F j, Y\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-10\",\"left\":\"10\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_date_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_date_normal_color_responsive\":\"\"},\"st_date_normal_color_responsive\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_date\"},{\"id\":\"54801b56\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-folder-open\",\"library\":\"fa-regular\"},\"size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width\":\"initial\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"76c7b185\",\"elType\":\"widget\",\"settings\":{\"sg_term_separator\":\",\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"4\",\"left\":\"10\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_term_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_term_normal_color_responsive\":\"\"},\"st_term_normal_color_responsive\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_terms\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e7c45b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a457bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ac58b23\",\"elType\":\"widget\",\"settings\":{\"sg_image_size_imagesize_size\":\"full\",\"st_image_alignment_responsive\":\"left\",\"st_image_size_responsive\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_image_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_featured_image\"},{\"id\":\"2785c5d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4a373737\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Comprehensive Directory For Your Mental Health\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48190a06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"353ac6ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"442d820e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"607ad279\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"783c9a2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b928a86\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Tag Post : \",\"align\":\"left\",\"align_mobile\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"527d40e4\",\"elType\":\"widget\",\"settings\":{\"sg_term_taxonomy\":\"post_tag\",\"sg_term_separator\":\",\",\"st_term_hover_animation\":\"float\",\"__globals__\":{\"st_term_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_term_typography_content_typography_typography\":\"globals\\/typography?id=4e452f7\"},\"st_term_normal_color_responsive\":\"#FF4255\",\"st_term_alignment_responsive_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_terms\"}],\"isInner\":true},{\"id\":\"77cd73e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"552725a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2401eaa0\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"bfccd6f\",\"ekit_socialshare_icon_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"globals\\/colors?id=accent\"},\"ekit_socialshare_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_socialshare_label_text\":\"facebook\",\"ekit_socialshare_label\":\"\",\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"},{\"ekit_socialshare_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"globals\\/colors?id=accent\"},\"_id\":\"4fb1b67\",\"ekit_socialshare_label\":\"\",\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"},{\"ekit_socialshare_icons\":{\"value\":\"icon icon-linkedin\",\"library\":\"ekiticons\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"globals\\/colors?id=accent\"},\"_id\":\"6734bb0\",\"ekit_socialshare_label\":\"\",\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_socialshare_list_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialshare_list_align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b1acc55\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"\"},\"color\":\"#E1E1E1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e450bd0\",\"elType\":\"widget\",\"settings\":{\"st_form_field_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_form_field_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_form_field_normal_background_background_slideshow_gallery\":[],\"st_form_field_focus_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_form_field_focus_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_form_field_focus_background_background_slideshow_gallery\":[],\"st_form_checkbox_icon\":{\"value\":\"jki jki-check-light\",\"library\":\"jkiticon\"},\"st_form_checkbox_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_form_checkbox_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_form_checkbox_normal_background_background_slideshow_gallery\":[],\"st_form_checkbox_checked_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_form_checkbox_checked_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_form_checkbox_checked_background_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_comment\"}],\"isInner\":false},{\"id\":\"6c4de39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c0816ae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21fc2a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d3e0f49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent Post\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b7a567\",\"elType\":\"widget\",\"settings\":{\"section_layout_options\":\"recent\",\"section_recent_post_limit\":3,\"icon_list\":[],\"show_feature_image\":\"yes\",\"show_post_icon\":\"\",\"show_post_meta\":\"yes\",\"show_date_meta\":\"yes\",\"date_meta__icons\":{\"value\":\"\",\"library\":\"\"},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#272B36\",\"feature_image_width\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"feature_image_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"feature_image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_post_list_meta_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"icon_typography_typography\":\"globals\\/typography?id=1660fa3\",\"ekit_post_list_meta_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"ekit_post_list_meta_content_color\":\"globals\\/colors?id=text\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icons\":{\"value\":\"fas fa-circle\",\"library\":\"regular\"},\"category_meta__icons\":{\"value\":\"icon icon-folder\",\"library\":\"ekiticons\"},\"list_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"list_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"list_bg_slideshow_gallery\":[],\"list_bg_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"list_bg_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"list_bg_hover_slideshow_gallery\":[],\"icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-post-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"85c4569\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/cropped-shot-of-psychotherapist-writing-on-clipboard-and-female-patient-sitting-on-couch.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.68000000000000005,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d807d54\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50252c42\",\"elType\":\"widget\",\"settings\":{\"title\":\"24 Hours Emergency Call\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"340819a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"35349f8f\",\"elType\":\"widget\",\"settings\":{\"text\":\"(+021) 2336 278\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"background_color\":\"#FF4255\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"button_text_color\":\"#FFFFFF\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"27\",\"bottom\":\"15\",\"left\":\"27\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"682d2d84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50a038cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63417fcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Categories\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25ddb37e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"_id\":\"59f5e7e\",\"icons\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"link\":\"5\",\"text\":\"\",\"list_bg_color\":\"\"},{\"icons\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"link\":\"9\",\"_id\":\"440e34d\",\"text\":\"\",\"list_bg_color\":\"\"},{\"icons\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"link\":\"7\",\"_id\":\"cfbec5e\",\"text\":\"\",\"list_bg_color\":\"\"},{\"icons\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"link\":\"11\",\"_id\":\"6e1c084\",\"text\":\"\",\"list_bg_color\":\"\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=primary\",\"text_color_hover\":\"globals\\/colors?id=secondary\",\"divider_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"divider\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"divider_color\":\"#E1E1E1\",\"icon_color\":\"#29A4FF\",\"text_color\":\"#000E44\",\"text_color_hover\":\"#29A4FF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-category-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(481,110,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(482,110,'_wp_page_template','elementor_canvas'),(483,110,'envato_tk_source_kit','57'),(484,110,'envato_tk_source_index','16'),(485,114,'_wp_attached_file','2023/07/smiling-man-at-group-therapy-session-7HU8Q2C.jpg'),(486,114,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:820;s:6:\"height\";i:1024;s:4:\"file\";s:56:\"2023/07/smiling-man-at-group-therapy-session-7HU8Q2C.jpg\";s:8:\"filesize\";i:173206;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"smiling-man-at-group-therapy-session-7HU8Q2C-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19336;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"smiling-man-at-group-therapy-session-7HU8Q2C-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9646;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"smiling-man-at-group-therapy-session-7HU8Q2C-768x959.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:959;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101582;}}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:{}}}'),(487,115,'_elementor_edit_mode','builder'),(488,115,'_elementor_template_type','page'),(489,115,'_elementor_version','3.14.1'),(490,115,'_elementor_data','[{\"id\":\"1ee49438\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"77\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-2.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"605ec21b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f7488a9\",\"elType\":\"widget\",\"settings\":{\"st_title_alignment_responsive\":\"center\",\"__globals__\":{\"st_title_normal_color_responsive\":\"\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=secondary\"},\"st_title_normal_color_responsive\":\"#FFFFFF\",\"st_title_normal_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_normal_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_normal_gradient_background_slideshow_gallery\":[],\"st_title_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_hover_gradient_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_title\"},{\"id\":\"2265136\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"content_position\":\"middle\",\"margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"20\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27c2ed12\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"align_mobile\":\"center\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2590e067\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-user-circle\",\"library\":\"fa-regular\"},\"size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width\":\"initial\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4561461c\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-10\",\"left\":\"10\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_author_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_author_normal_color_responsive\":\"\"},\"st_author_normal_color_responsive\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_author\"},{\"id\":\"453341d\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-calendar-alt\",\"library\":\"fa-regular\"},\"size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width\":\"initial\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"4a683ebf\",\"elType\":\"widget\",\"settings\":{\"sg_date_format_custom\":\"F j, Y\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"-10\",\"left\":\"10\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_date_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_date_normal_color_responsive\":\"\"},\"st_date_normal_color_responsive\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_date\"},{\"id\":\"54801b56\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"far fa-folder-open\",\"library\":\"fa-regular\"},\"size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_element_width\":\"initial\",\"__globals__\":{\"primary_color\":\"globals\\/colors?id=accent\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"76c7b185\",\"elType\":\"widget\",\"settings\":{\"sg_term_separator\":\",\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"4\",\"left\":\"10\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_term_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_term_normal_color_responsive\":\"\"},\"st_term_normal_color_responsive\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_terms\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"52e7c45b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"contain\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a457bdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ac58b23\",\"elType\":\"widget\",\"settings\":{\"sg_image_size_imagesize_size\":\"full\",\"st_image_alignment_responsive\":\"left\",\"st_image_size_responsive\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"st_image_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_featured_image\"},{\"id\":\"2785c5d4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4a373737\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Comprehensive Directory For Your Mental Health\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48190a06\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"353ac6ef\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"442d820e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"607ad279\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_position\":\"middle\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"783c9a2b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b928a86\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Tag Post : \",\"align\":\"left\",\"align_mobile\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"527d40e4\",\"elType\":\"widget\",\"settings\":{\"sg_term_taxonomy\":\"post_tag\",\"sg_term_separator\":\",\",\"st_term_hover_animation\":\"float\",\"__globals__\":{\"st_term_normal_color_responsive\":\"globals\\/colors?id=accent\",\"st_term_typography_content_typography_typography\":\"globals\\/typography?id=4e452f7\"},\"st_term_normal_color_responsive\":\"#FF4255\",\"st_term_alignment_responsive_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_terms\"}],\"isInner\":true},{\"id\":\"77cd73e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"552725a9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share This : \",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2401eaa0\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"bfccd6f\",\"ekit_socialshare_icon_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"globals\\/colors?id=accent\"},\"ekit_socialshare_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_socialshare_label_text\":\"facebook\",\"ekit_socialshare_label\":\"\",\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"},{\"ekit_socialshare_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"twitter\",\"ekit_socialshare_icon_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"globals\\/colors?id=accent\"},\"_id\":\"4fb1b67\",\"ekit_socialshare_label\":\"\",\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"},{\"ekit_socialshare_icons\":{\"value\":\"icon icon-linkedin\",\"library\":\"ekiticons\"},\"ekit_socialshare_icon_hover_bg_color\":\"\",\"ekit_socialshare_label_text\":\"linkedin\",\"ekit_socialshare_icon_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"globals\\/colors?id=accent\"},\"_id\":\"6734bb0\",\"ekit_socialshare_label\":\"\",\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":38,\"sizes\":[]},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":\"15\",\"sizes\":[]},\"ekit_socialshare_list_align\":\"right\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialshare_list_align_mobile\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2b1acc55\",\"elType\":\"widget\",\"settings\":{\"text\":\"Divider\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"\"},\"color\":\"#E1E1E1\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2e450bd0\",\"elType\":\"widget\",\"settings\":{\"st_form_field_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_form_field_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_form_field_normal_background_background_slideshow_gallery\":[],\"st_form_field_focus_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_form_field_focus_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_form_field_focus_background_background_slideshow_gallery\":[],\"st_form_checkbox_icon\":{\"value\":\"jki jki-check-light\",\"library\":\"jkiticon\"},\"st_form_checkbox_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_form_checkbox_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_form_checkbox_normal_background_background_slideshow_gallery\":[],\"st_form_checkbox_checked_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_form_checkbox_checked_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_form_checkbox_checked_background_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_comment\"}],\"isInner\":false},{\"id\":\"6c4de39a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":35,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c0816ae\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"21fc2a8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d3e0f49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Recent Post\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"48b7a567\",\"elType\":\"widget\",\"settings\":{\"section_layout_options\":\"recent\",\"section_recent_post_limit\":3,\"icon_list\":[],\"show_feature_image\":\"yes\",\"show_post_icon\":\"\",\"show_post_meta\":\"yes\",\"show_date_meta\":\"yes\",\"date_meta__icons\":{\"value\":\"\",\"library\":\"\"},\"space_between\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"text_color\":\"#272B36\",\"feature_image_width\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"feature_image_width_mobile\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"feature_image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_post_list_meta_content_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"icon_typography_typography\":\"globals\\/typography?id=1660fa3\",\"ekit_post_list_meta_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"ekit_post_list_meta_content_color\":\"globals\\/colors?id=text\",\"text_color_hover\":\"globals\\/colors?id=accent\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icons\":{\"value\":\"fas fa-circle\",\"library\":\"regular\"},\"category_meta__icons\":{\"value\":\"icon icon-folder\",\"library\":\"ekiticons\"},\"list_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"list_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"list_bg_slideshow_gallery\":[],\"list_bg_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"list_bg_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"list_bg_hover_slideshow_gallery\":[],\"icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-post-list\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"85c4569\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"71\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/cropped-shot-of-psychotherapist-writing-on-clipboard-and-female-patient-sitting-on-couch.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.68000000000000005,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d807d54\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50252c42\",\"elType\":\"widget\",\"settings\":{\"title\":\"24 Hours Emergency Call\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"340819a0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"35349f8f\",\"elType\":\"widget\",\"settings\":{\"text\":\"(+021) 2336 278\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"globals\\/colors?id=secondary\",\"button_text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"background_color\":\"#FF4255\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"button_text_color\":\"#FFFFFF\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"27\",\"bottom\":\"15\",\"left\":\"27\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"682d2d84\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50a038cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63417fcc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Categories\",\"header_size\":\"h3\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25ddb37e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"_id\":\"59f5e7e\",\"icons\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"link\":\"5\",\"text\":\"\",\"list_bg_color\":\"\"},{\"icons\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"link\":\"9\",\"_id\":\"440e34d\",\"text\":\"\",\"list_bg_color\":\"\"},{\"icons\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"link\":\"7\",\"_id\":\"cfbec5e\",\"text\":\"\",\"list_bg_color\":\"\"},{\"icons\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"link\":\"11\",\"_id\":\"6e1c084\",\"text\":\"\",\"list_bg_color\":\"\"}],\"space_between\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=primary\",\"text_color_hover\":\"globals\\/colors?id=secondary\",\"divider_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"divider\":\"yes\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"divider_color\":\"#E1E1E1\",\"icon_color\":\"#29A4FF\",\"text_color\":\"#000E44\",\"text_color_hover\":\"#29A4FF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-category-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(491,112,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(492,112,'_wp_page_template','elementor_header_footer'),(493,112,'envato_tk_source_kit','57'),(494,112,'envato_tk_source_index','12'),(495,114,'_elementor_source_image_hash','bab45ed4dfaa80125e43db5fab51394a07ea4db8'),(496,116,'_wp_attached_file','2023/07/CASCKD8.jpg'),(497,116,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:320;s:6:\"height\";i:320;s:4:\"file\";s:19:\"2023/07/CASCKD8.jpg\";s:8:\"filesize\";i:52477;s:5:\"sizes\";a:2:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"CASCKD8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19232;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"CASCKD8-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8967;}}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:{}}}'),(498,116,'_elementor_source_image_hash','2a148ebea95c1cc6cf7bac3d061b0860777c7655'),(499,117,'_elementor_edit_mode','builder'),(500,117,'_elementor_template_type','section'),(501,118,'_wp_attached_file','2023/07/family-XNUKDAT.png'),(502,118,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:284;s:4:\"file\";s:26:\"2023/07/family-XNUKDAT.png\";s:8:\"filesize\";i:15428;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"family-XNUKDAT-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14024;}}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:{}}}'),(503,117,'_elementor_version','3.14.1'),(504,117,'_elementor_data','[{\"id\":\"7e15a073\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_position\":\"middle\",\"z_index\":2,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"__globals__\":{\"jet_sticky_section_sticky_background_color\":\"\",\"background_color\":\"\"},\"jet_sticky_section_sticky_z_index\":10,\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-110\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"z_index_tablet\":7,\"jet_sticky_section_sticky_background_color\":\"#141414\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#01221F\",\"background_background\":\"classic\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"layout\":\"full_width\",\"border_border\":\"solid\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4173a7cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.916,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_mobile\":50,\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70dfaf3e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"93\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/logo-QQBEZ9C.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d1ef139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":66.200999999999993,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"_inline_size_tablet\":70,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7460df4\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu-1\",\"sg_menu_alignment_responsive\":\"center\",\"sg_mobile_menu_logo\":{\"id\":\"93\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/logo-QQBEZ9C.png\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"jki jki-chevron-down-light\",\"library\":\"jkiticon\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_position_responsive_tablet\":\"right\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#02010100\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=8e0c2ec\",\"st_menu_item_text_normal_color_responsive\":\"\",\"st_menu_item_text_hover_color_responsive\":\"\",\"st_menu_item_text_active_color_responsive\":\"\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"\",\"st_submenu_item_text_hover_color_responsive\":\"\",\"st_submenu_item_text_active_color_responsive\":\"\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=8e0c2ec\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"\",\"st_menu_item_text_hover_color_responsive_tablet\":\"\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=accent\"},\"st_menu_item_text_normal_color_responsive\":\"#FFFFFF\",\"st_menu_item_text_hover_color_responsive\":\"#E17141\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"#FCFCFC\",\"st_menu_item_text_normal_color_responsive_tablet\":\"#141414\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#B89161\",\"st_menu_item_text_active_color_responsive\":\"#E17141\",\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_item_text_normal_color_responsive\":\"#FFFFFF\",\"st_submenu_item_text_hover_color_responsive\":\"#E17141\",\"st_submenu_item_text_active_color_responsive\":\"#E17141\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#E17141\",\"st_hamburger_menu_position_responsive_mobile\":\"right\",\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_hamburger_menu_width_responsive_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_menu_item_text_active_color_responsive_tablet\":\"#E17141\",\"st_submenu_item_indicator_color_responsive_tablet\":\"#E17141\",\"st_hamburger_menu_close_color_responsive_tablet\":\"#FFFFFF\",\"st_submenu_panel_background_background_color\":\"#01221F\",\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_menu_item_typography_content_typography_typography\":\"custom\",\"st_menu_item_typography_content_typography_font_family\":\"Inter\",\"st_menu_item_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_menu_item_typography_content_typography_font_weight\":\"600\",\"st_menu_item_typography_content_typography_text_transform\":\"uppercase\",\"st_menu_item_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_menu_item_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_submenu_item_typography_content_typography_typography\":\"custom\",\"st_submenu_item_typography_content_typography_font_family\":\"Inter\",\"st_submenu_item_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_submenu_item_typography_content_typography_font_weight\":\"600\",\"st_submenu_item_typography_content_typography_text_transform\":\"uppercase\",\"st_submenu_item_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_submenu_item_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_hamburger_menu_close_background_background_color\":\"#E17141\",\"sg_mobile_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_menu_wrapper_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_wrapper_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_wrapper_background_background_slideshow_gallery\":[],\"st_menu_item_text_normal_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_normal_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_normal_bg_background_slideshow_gallery\":[],\"st_menu_item_text_hover_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_hover_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_hover_bg_background_slideshow_gallery\":[],\"st_menu_item_text_active_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_active_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_active_bg_background_slideshow_gallery\":[],\"st_submenu_item_text_normal_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_normal_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_normal_bg_background_slideshow_gallery\":[],\"st_submenu_item_text_hover_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_hover_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_hover_bg_background_slideshow_gallery\":[],\"st_submenu_item_text_active_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_active_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_active_bg_background_slideshow_gallery\":[],\"st_submenu_panel_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_panel_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_panel_background_background_slideshow_gallery\":[],\"st_hamburger_menu_icon_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_icon_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_icon_background_background_slideshow_gallery\":[],\"st_hamburger_menu_icon_background_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_icon_background_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_icon_background_hover_background_slideshow_gallery\":[],\"st_hamburger_menu_close_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_close_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_close_background_background_slideshow_gallery\":[],\"st_hamburger_menu_close_background_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_close_background_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_close_background_hover_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":false},{\"id\":\"375eba71\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.523,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_mobile\":50,\"_inline_size_tablet\":30,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3980b60a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#E17141\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(505,118,'_elementor_source_image_hash','0791bfe8de17af79d97124bcb7cf8f9ec24e2a78'),(506,119,'_elementor_edit_mode','builder'),(507,119,'_elementor_template_type','section'),(508,119,'_elementor_version','3.14.1'),(509,119,'_elementor_data','[{\"id\":\"7e15a073\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_position\":\"middle\",\"z_index\":2,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"__globals__\":{\"jet_sticky_section_sticky_background_color\":\"\",\"background_color\":\"\"},\"jet_sticky_section_sticky_z_index\":10,\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-110\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"z_index_tablet\":7,\"jet_sticky_section_sticky_background_color\":\"#141414\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#01221F\",\"background_background\":\"classic\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"layout\":\"full_width\",\"border_border\":\"solid\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4173a7cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.916,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_mobile\":50,\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70dfaf3e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"93\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/logo-QQBEZ9C.png\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"d1ef139\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":66.200999999999993,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":50,\"_inline_size_tablet\":70,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7460df4\",\"elType\":\"widget\",\"settings\":{\"sg_menu_choose\":\"menu-1\",\"sg_menu_alignment_responsive\":\"center\",\"sg_mobile_menu_logo\":{\"id\":\"93\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/logo-QQBEZ9C.png\"},\"sg_mobile_menu_logo_size_imagesize_size\":\"full\",\"sg_mobile_menu_icon\":{\"value\":\"jki jki-bars-solid\",\"library\":\"jkiticon\"},\"st_menu_wrapper_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_margin_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_wrapper_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_menu_item_spacing_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"18\",\"bottom\":\"0\",\"left\":\"18\",\"isLinked\":false},\"st_menu_item_spacing_responsive_tablet\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"20\",\"bottom\":\"15\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator\":{\"value\":\"jki jki-chevron-down-light\",\"library\":\"jkiticon\"},\"st_submenu_item_indicator_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_item_indicator_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_padding_responsive\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_submenu_panel_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"st_submenu_panel_background_background_background\":\"classic\",\"st_submenu_panel_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_panel_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_position_responsive_tablet\":\"right\",\"st_hamburger_menu_icon_background_background_background\":\"classic\",\"st_hamburger_menu_icon_background_background_color\":\"#02010100\",\"st_hamburger_menu_icon_border_border_border\":\"solid\",\"st_hamburger_menu_icon_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_hamburger_menu_close_background_background_background\":\"classic\",\"st_hamburger_menu_close_border_border_border\":\"solid\",\"st_hamburger_menu_close_border_border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"st_menu_item_typography_content_typography_typography\":\"globals\\/typography?id=8e0c2ec\",\"st_menu_item_text_normal_color_responsive\":\"\",\"st_menu_item_text_hover_color_responsive\":\"\",\"st_menu_item_text_active_color_responsive\":\"\",\"st_submenu_item_indicator_color_responsive\":\"\",\"st_submenu_panel_background_background_color\":\"\",\"st_submenu_item_text_normal_color_responsive\":\"\",\"st_submenu_item_text_hover_color_responsive\":\"\",\"st_submenu_item_text_active_color_responsive\":\"\",\"st_submenu_item_typography_content_typography_typography\":\"globals\\/typography?id=8e0c2ec\",\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"\",\"st_menu_item_text_normal_color_responsive_tablet\":\"\",\"st_menu_item_text_hover_color_responsive_tablet\":\"\",\"st_menu_item_text_active_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_submenu_item_indicator_color_responsive_tablet\":\"globals\\/colors?id=secondary\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"globals\\/colors?id=accent\",\"st_hamburger_menu_icon_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_responsive_tablet\":\"\",\"st_hamburger_menu_close_color_hover_responsive_tablet\":\"\",\"st_hamburger_menu_close_background_background_color\":\"globals\\/colors?id=accent\"},\"st_menu_item_text_normal_color_responsive\":\"#FFFFFF\",\"st_menu_item_text_hover_color_responsive\":\"#E17141\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow_type\":\"yes\",\"st_submenu_panel_box_shadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_menu_wrapper_mobile_color_tablet_responsive_tablet\":\"#FCFCFC\",\"st_menu_item_text_normal_color_responsive_tablet\":\"#141414\",\"st_menu_item_text_hover_color_responsive_tablet\":\"#B89161\",\"st_menu_item_text_active_color_responsive\":\"#E17141\",\"st_submenu_item_indicator_border_border_border\":\"solid\",\"st_submenu_item_indicator_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_submenu_item_text_normal_color_responsive\":\"#FFFFFF\",\"st_submenu_item_text_hover_color_responsive\":\"#E17141\",\"st_submenu_item_text_active_color_responsive\":\"#E17141\",\"st_hamburger_menu_icon_color_responsive_tablet\":\"#E17141\",\"st_hamburger_menu_position_responsive_mobile\":\"right\",\"st_hamburger_menu_width_responsive_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_hamburger_menu_width_responsive_mobile\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_hamburger_menu_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_menu_item_text_active_color_responsive_tablet\":\"#E17141\",\"st_submenu_item_indicator_color_responsive_tablet\":\"#E17141\",\"st_hamburger_menu_close_color_responsive_tablet\":\"#FFFFFF\",\"st_submenu_panel_background_background_color\":\"#01221F\",\"st_hamburger_menu_close_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_hamburger_menu_close_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"st_menu_item_typography_content_typography_typography\":\"custom\",\"st_menu_item_typography_content_typography_font_family\":\"Inter\",\"st_menu_item_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_menu_item_typography_content_typography_font_weight\":\"600\",\"st_menu_item_typography_content_typography_text_transform\":\"uppercase\",\"st_menu_item_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_menu_item_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_submenu_item_typography_content_typography_typography\":\"custom\",\"st_submenu_item_typography_content_typography_font_family\":\"Inter\",\"st_submenu_item_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_submenu_item_typography_content_typography_font_weight\":\"600\",\"st_submenu_item_typography_content_typography_text_transform\":\"uppercase\",\"st_submenu_item_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_submenu_item_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_hamburger_menu_close_background_background_color\":\"#E17141\",\"sg_mobile_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_menu_wrapper_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_wrapper_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_wrapper_background_background_slideshow_gallery\":[],\"st_menu_item_text_normal_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_normal_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_normal_bg_background_slideshow_gallery\":[],\"st_menu_item_text_hover_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_hover_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_hover_bg_background_slideshow_gallery\":[],\"st_menu_item_text_active_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_active_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_menu_item_text_active_bg_background_slideshow_gallery\":[],\"st_submenu_item_text_normal_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_normal_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_normal_bg_background_slideshow_gallery\":[],\"st_submenu_item_text_hover_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_hover_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_hover_bg_background_slideshow_gallery\":[],\"st_submenu_item_text_active_bg_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_active_bg_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_item_text_active_bg_background_slideshow_gallery\":[],\"st_submenu_panel_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_panel_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_submenu_panel_background_background_slideshow_gallery\":[],\"st_hamburger_menu_icon_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_icon_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_icon_background_background_slideshow_gallery\":[],\"st_hamburger_menu_icon_background_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_icon_background_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_icon_background_hover_background_slideshow_gallery\":[],\"st_hamburger_menu_close_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_close_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_close_background_background_slideshow_gallery\":[],\"st_hamburger_menu_close_background_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_close_background_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hamburger_menu_close_background_hover_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_nav_menu\"}],\"isInner\":false},{\"id\":\"375eba71\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.523,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_mobile\":50,\"_inline_size_tablet\":30,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3980b60a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Make Appointment\",\"align\":\"right\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#E17141\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(510,117,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(511,117,'_wp_page_template','elementor_canvas'),(512,117,'envato_tk_source_kit','57'),(513,117,'envato_tk_source_index','15'),(514,120,'_wp_attached_file','2023/07/anxiety-TYH9SPN.png'),(515,120,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:284;s:4:\"file\";s:27:\"2023/07/anxiety-TYH9SPN.png\";s:8:\"filesize\";i:11474;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"anxiety-TYH9SPN-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10985;}}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:{}}}'),(516,120,'_elementor_source_image_hash','b6235b2f3ecad14a9af09e895eaa168706e96686'),(517,121,'_elementor_edit_mode','builder'),(518,122,'_wp_attached_file','2023/07/blonde-counselor-RZ2YJEB.jpg'),(519,121,'_elementor_template_type','page'),(520,122,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:820;s:6:\"height\";i:1024;s:4:\"file\";s:36:\"2023/07/blonde-counselor-RZ2YJEB.jpg\";s:8:\"filesize\";i:157843;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"blonde-counselor-RZ2YJEB-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17364;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"blonde-counselor-RZ2YJEB-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8671;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"blonde-counselor-RZ2YJEB-768x959.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:959;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86686;}}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:{}}}'),(521,123,'_wp_attached_file','2023/07/anxiety-TYH9SPN-1.png'),(522,123,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:284;s:4:\"file\";s:29:\"2023/07/anxiety-TYH9SPN-1.png\";s:8:\"filesize\";i:11474;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"anxiety-TYH9SPN-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10985;}}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:{}}}'),(523,122,'_elementor_source_image_hash','f9a5b7b2d4d32cb02e3a77f4c36bf7e6cdb2d3ed'),(524,123,'_elementor_source_image_hash','b6235b2f3ecad14a9af09e895eaa168706e96686'),(525,121,'_elementor_version','3.14.1'),(526,124,'_wp_attached_file','2023/07/psychotherapist-talking-with-patients-of-support-group.jpg'),(527,124,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1378;s:4:\"file\";s:66:\"2023/07/psychotherapist-talking-with-patients-of-support-group.jpg\";s:8:\"filesize\";i:526901;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:66:\"psychotherapist-talking-with-patients-of-support-group-300x207.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:207;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14815;}s:5:\"large\";a:5:{s:4:\"file\";s:67:\"psychotherapist-talking-with-patients-of-support-group-1024x706.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:706;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112701;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:66:\"psychotherapist-talking-with-patients-of-support-group-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6909;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:66:\"psychotherapist-talking-with-patients-of-support-group-768x529.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:529;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67922;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:68:\"psychotherapist-talking-with-patients-of-support-group-1536x1058.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:239104;}}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:{}}}'),(528,121,'_elementor_data','[{\"id\":\"6a470697\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"63\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/african-man-in-mental-health-consultation.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"13558f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"181239e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"342ec1cf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6120673b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33ecaecd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2198203c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7090f75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"72\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"width_tablet\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"19a01cf9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31d5b378\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"5d08fdc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e54eb91\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"title_text\":\"We Are Trusted More Than 2580 Patients\",\"description_text\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7f517b0\"},\"primary_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aa76ee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c8baba4\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4c117\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Comprehensive Directory For Your Mental Health\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c21821\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e27720\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78aec4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#E17141\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68a18403\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuries\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=6f01aa7\"},\"text_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"701691f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3802c4e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"To assist the individual in recovering from the crisis & problems\",\"_id\":\"1cd10a1\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4505a0b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41dc43c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"59db7088\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68d0bc6b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10432c0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50fa5e7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"314b8469\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4ae703cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e9fcf59\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3590c9b6\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"7de4b03c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"344dbba3\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"1ba8ed27\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f20b5d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"3414dd7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34eeca7\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"642726e0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d7687b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"970e22f\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_player_self_hosted\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"self_poster_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_slideshow_gallery\":[],\"ekit_video_popup_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69a7b000\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b254c17\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fe04678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychologist\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43d3f2ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet With Our Psychologist\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"580b2750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cecca02\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b2ad133\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e7242c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/female-psychologist-in-office-FHV8Q5Z.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"668ef1af\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Merryn Schofield\",\"sg_title_focused\":\"\",\"sg_subtitle_enable\":\"yes\",\"sg_subtitle_heading\":\"Psychologist\",\"sg_description_enable\":\"\",\"sg_description\":\"Lorem ipsum dolor sit amet, consecte adipisci elit, sed do eiusmod tempor incididunt ut labore et dolore\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"sg_separator_style\":\"custom\",\"st_title_color_responsive\":\"#FFFFFF\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"st_subtitle_color_responsive\":\"#E17141\",\"st_description_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"st_subtitle_color_responsive\":\"globals\\/colors?id=accent\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_subtitle_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_subtitle_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"sg_subtitle_position\":\"before\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_family\":\"Inter\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_description_typography_content_typography_font_weight\":\"300\",\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_color\":\"#01221F\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"144ea5bb\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"globals\\/colors?id=50928c2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"0\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"},{\"id\":\"3e6f9c0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b7fc0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/psychologist-in-office-WAUZF95.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55b61652\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Thierry Brady\",\"sg_title_focused\":\"\",\"sg_subtitle_enable\":\"yes\",\"sg_subtitle_heading\":\"Psychologist\",\"sg_description_enable\":\"\",\"sg_description\":\"Lorem ipsum dolor sit amet, consecte adipisci elit, sed do eiusmod tempor incididunt ut labore et dolore\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"sg_separator_style\":\"custom\",\"st_title_color_responsive\":\"#FFFFFF\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"st_subtitle_color_responsive\":\"#E17141\",\"st_description_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"st_subtitle_color_responsive\":\"globals\\/colors?id=accent\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_subtitle_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_subtitle_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"sg_subtitle_position\":\"before\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_family\":\"Inter\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_description_typography_content_typography_font_weight\":\"300\",\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_color\":\"#01221F\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"1aee50a2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"globals\\/colors?id=50928c2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"0\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"},{\"id\":\"7086f88b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e5a82f0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-man-at-group-therapy-session-7HU8Q2C.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"231ec271\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Wilson Gilbert\",\"sg_title_focused\":\"\",\"sg_subtitle_enable\":\"yes\",\"sg_subtitle_heading\":\"Psychologist\",\"sg_description_enable\":\"\",\"sg_description\":\"Lorem ipsum dolor sit amet, consecte adipisci elit, sed do eiusmod tempor incididunt ut labore et dolore\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"sg_separator_style\":\"custom\",\"st_title_color_responsive\":\"#FFFFFF\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"st_subtitle_color_responsive\":\"#E17141\",\"st_description_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"st_subtitle_color_responsive\":\"globals\\/colors?id=accent\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_subtitle_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_subtitle_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"sg_subtitle_position\":\"before\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_family\":\"Inter\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_description_typography_content_typography_font_weight\":\"300\",\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_color\":\"#01221F\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"b986d41\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"globals\\/colors?id=50928c2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"0\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b509fe0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32e22e8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b3f3b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10716cf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13f35be8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4d1d1a80\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31d073e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32ef9e4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eb38b92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2529813a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c5f5a2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f4608e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79c87ed9\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"sg_content_readmore_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_content_comment_icon\":{\"value\":\"fas fa-comment\",\"library\":\"fa-solid\"},\"sg_content_meta_author_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"sg_content_meta_date_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"pagination_prev_icon\":{\"value\":\"jki jki-angle-left-solid\",\"library\":\"jkiticon\"},\"pagination_next_icon\":{\"value\":\"jki jki-angle-right-solid\",\"library\":\"jkiticon\"},\"pagination_icon\":{\"value\":\"\",\"library\":\"\"},\"st_wrapper_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_slideshow_gallery\":[],\"st_post_item_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_slideshow_gallery\":[],\"st_thumbnail_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_slideshow_gallery\":[],\"st_thumbnail_background_overlay_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_slideshow_gallery\":[],\"st_thumbnail_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_slideshow_gallery\":[],\"st_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_slideshow_gallery\":[],\"st_category_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_slideshow_gallery\":[],\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_readmore_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_slideshow_gallery\":[],\"st_readmore_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_slideshow_gallery\":[],\"st_preload_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_slideshow_gallery\":[],\"st_preload_dot_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_dot_background_background_slideshow_gallery\":[],\"st_pagination_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_slideshow_gallery\":[],\"st_pagination_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_slideshow_gallery\":[],\"st_pagination_disabled_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_slideshow_gallery\":[],\"st_nocontent_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(529,125,'_wp_attached_file','2023/07/couple-RUUMCJ.png'),(530,125,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:284;s:4:\"file\";s:25:\"2023/07/couple-RUUMCJ.png\";s:8:\"filesize\";i:13843;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"couple-RUUMCJ-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13371;}}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:{}}}'),(531,125,'_elementor_source_image_hash','0f6459ff6e36e10c413a8b30c3f7d11077124fcf'),(532,126,'_wp_attached_file','2023/07/mental-health-and-psychological-help-concept-young-woman-with-depression-on-counseling-session-with.jpg'),(533,126,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:111:\"2023/07/mental-health-and-psychological-help-concept-young-woman-with-depression-on-counseling-session-with.jpg\";s:8:\"filesize\";i:285821;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:111:\"mental-health-and-psychological-help-concept-young-woman-with-depression-on-counseling-session-with-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12409;}s:5:\"large\";a:5:{s:4:\"file\";s:112:\"mental-health-and-psychological-help-concept-young-woman-with-depression-on-counseling-session-with-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67715;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:111:\"mental-health-and-psychological-help-concept-young-woman-with-depression-on-counseling-session-with-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7726;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:111:\"mental-health-and-psychological-help-concept-young-woman-with-depression-on-counseling-session-with-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42449;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:113:\"mental-health-and-psychological-help-concept-young-woman-with-depression-on-counseling-session-with-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135506;}}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:{}}}'),(534,127,'_elementor_edit_mode','builder'),(535,127,'_elementor_template_type','page'),(536,124,'_elementor_source_image_hash','5256b4fee504beaaeba53fb5c0bb2213737de8d9'),(537,128,'_elementor_edit_mode','builder'),(538,128,'_elementor_template_type','page'),(539,128,'_elementor_version','3.14.1');
INSERT INTO `wp_postmeta` VALUES (540,128,'_elementor_data','[{\"id\":\"6a470697\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"63\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/african-man-in-mental-health-consultation.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"13558f6a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"181239e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"342ec1cf\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6120673b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33ecaecd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2198203c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7090f75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"72\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"width_tablet\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"19a01cf9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31d5b378\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"5d08fdc7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e54eb91\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"title_text\":\"We Are Trusted More Than 2580 Patients\",\"description_text\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7f517b0\"},\"primary_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"aa76ee9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5c8baba4\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c4c117\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Comprehensive Directory For Your Mental Health\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c21821\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3e27720\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78aec4ee\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#E17141\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68a18403\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuries\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=6f01aa7\"},\"text_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"701691f1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"3802c4e8\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"To assist the individual in recovering from the crisis & problems\",\"_id\":\"1cd10a1\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"4505a0b7\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"41dc43c6\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"59db7088\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68d0bc6b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10432c0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50fa5e7e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"314b8469\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4ae703cb\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e9fcf59\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3590c9b6\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"7de4b03c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"344dbba3\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"1ba8ed27\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7f20b5d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"3414dd7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"34eeca7\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"642726e0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d7687b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"970e22f\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_player_self_hosted\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"self_poster_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_slideshow_gallery\":[],\"ekit_video_popup_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"69a7b000\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7b254c17\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fe04678\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychologist\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"43d3f2ac\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet With Our Psychologist\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"580b2750\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5cecca02\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5b2ad133\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e7242c5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/female-psychologist-in-office-FHV8Q5Z.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"668ef1af\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Merryn Schofield\",\"sg_title_focused\":\"\",\"sg_subtitle_enable\":\"yes\",\"sg_subtitle_heading\":\"Psychologist\",\"sg_description_enable\":\"\",\"sg_description\":\"Lorem ipsum dolor sit amet, consecte adipisci elit, sed do eiusmod tempor incididunt ut labore et dolore\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"sg_separator_style\":\"custom\",\"st_title_color_responsive\":\"#FFFFFF\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"st_subtitle_color_responsive\":\"#E17141\",\"st_description_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"st_subtitle_color_responsive\":\"globals\\/colors?id=accent\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_subtitle_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_subtitle_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"sg_subtitle_position\":\"before\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_family\":\"Inter\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_description_typography_content_typography_font_weight\":\"300\",\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_color\":\"#01221F\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"144ea5bb\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"globals\\/colors?id=50928c2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"0\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"},{\"id\":\"3e6f9c0c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b7fc0c8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/psychologist-in-office-WAUZF95.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"55b61652\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Thierry Brady\",\"sg_title_focused\":\"\",\"sg_subtitle_enable\":\"yes\",\"sg_subtitle_heading\":\"Psychologist\",\"sg_description_enable\":\"\",\"sg_description\":\"Lorem ipsum dolor sit amet, consecte adipisci elit, sed do eiusmod tempor incididunt ut labore et dolore\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"sg_separator_style\":\"custom\",\"st_title_color_responsive\":\"#FFFFFF\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"st_subtitle_color_responsive\":\"#E17141\",\"st_description_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"st_subtitle_color_responsive\":\"globals\\/colors?id=accent\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_subtitle_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_subtitle_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"sg_subtitle_position\":\"before\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_family\":\"Inter\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_description_typography_content_typography_font_weight\":\"300\",\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_color\":\"#01221F\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"1aee50a2\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"globals\\/colors?id=50928c2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"0\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"},{\"id\":\"7086f88b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2e5a82f0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-man-at-group-therapy-session-7HU8Q2C.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"231ec271\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Wilson Gilbert\",\"sg_title_focused\":\"\",\"sg_subtitle_enable\":\"yes\",\"sg_subtitle_heading\":\"Psychologist\",\"sg_description_enable\":\"\",\"sg_description\":\"Lorem ipsum dolor sit amet, consecte adipisci elit, sed do eiusmod tempor incididunt ut labore et dolore\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"sg_separator_style\":\"custom\",\"st_title_color_responsive\":\"#FFFFFF\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"st_subtitle_color_responsive\":\"#E17141\",\"st_description_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"st_subtitle_color_responsive\":\"globals\\/colors?id=accent\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_subtitle_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_subtitle_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"sg_subtitle_position\":\"before\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_family\":\"Inter\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_description_typography_content_typography_font_weight\":\"300\",\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_color\":\"#01221F\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"b986d41\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"globals\\/colors?id=50928c2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"0\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"3b509fe0\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32e22e8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b3f3b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10716cf6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13f35be8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"4d1d1a80\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31d073e8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"32ef9e4c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2eb38b92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2529813a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c5f5a2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64f4608e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79c87ed9\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"sg_content_readmore_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_content_comment_icon\":{\"value\":\"fas fa-comment\",\"library\":\"fa-solid\"},\"sg_content_meta_author_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"sg_content_meta_date_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"pagination_prev_icon\":{\"value\":\"jki jki-angle-left-solid\",\"library\":\"jkiticon\"},\"pagination_next_icon\":{\"value\":\"jki jki-angle-right-solid\",\"library\":\"jkiticon\"},\"pagination_icon\":{\"value\":\"\",\"library\":\"\"},\"st_wrapper_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_slideshow_gallery\":[],\"st_post_item_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_slideshow_gallery\":[],\"st_thumbnail_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_slideshow_gallery\":[],\"st_thumbnail_background_overlay_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_slideshow_gallery\":[],\"st_thumbnail_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_slideshow_gallery\":[],\"st_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_slideshow_gallery\":[],\"st_category_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_slideshow_gallery\":[],\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_readmore_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_slideshow_gallery\":[],\"st_readmore_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_slideshow_gallery\":[],\"st_preload_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_slideshow_gallery\":[],\"st_preload_dot_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_dot_background_background_slideshow_gallery\":[],\"st_pagination_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_slideshow_gallery\":[],\"st_pagination_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_slideshow_gallery\":[],\"st_pagination_disabled_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_slideshow_gallery\":[],\"st_nocontent_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(541,127,'_elementor_version','3.14.1'),(542,127,'_elementor_data','[{\"id\":\"1b7648ef\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4cd5d86a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a5d7941\",\"elType\":\"widget\",\"settings\":{\"title\":\"Case Details\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf922fc\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Case Details\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bd60193\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"65971052\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e4b5c83\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"854daf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b6ba1d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1eb3fca4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.956000000000003,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f373063\",\"elType\":\"widget\",\"settings\":{\"title\":\"Couple Problem Solving\",\"header_size\":\"h3\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dbb33a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris \",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c0703a3\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-calendar-full\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Date\",\"ekit_icon_box_description_text\":\"June 18, 2021\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=4e452f7\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=accent\"},\"_element_width_mobile\":\"inherit\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2e7d17c6\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users2\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Client\",\"ekit_icon_box_description_text\":\"Bill & Melin\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=4e452f7\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"583ce1fd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-folder-1\",\"library\":\"ekiticons\"},\"ekit_icon_box_header_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_title_text\":\"Category\",\"ekit_icon_box_description_text\":\"Couple Problem\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=4e452f7\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=accent\"},\"_element_width_mobile\":\"inherit\",\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"22172f6\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"jki jki-team-worker-line\",\"library\":\"jkiticon\"},\"ekit_icon_box_header_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_title_text\":\"Mentor\",\"ekit_icon_box_description_text\":\"Jordi Medrano\\n\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=4e452f7\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=accent\"},\"_element_width_mobile\":\"inherit\",\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"3c599e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share It\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=4e452f7\",\"text_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ebd1e61\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"eaaad9b\",\"ekit_socialshare_icon_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_socialshare_icon_color\":\"\",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_bg_color\":\"globals\\/colors?id=accent\",\"ekit_socialshare_icon_hover_bg_color\":\"\"},\"ekit_socialshare_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_socialshare_label_text\":\"facebook\",\"ekit_socialshare_label\":\"\",\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"},{\"ekit_socialshare_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_socialshare_label_text\":\"twitter\",\"_id\":\"a4a3d64\",\"ekit_socialshare_icon_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_socialshare_icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_socialshare_label\":\"\",\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_bg_color\":\"#3b5998\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"},{\"ekit_socialshare_icons\":{\"value\":\"icon icon-linkedin\",\"library\":\"ekiticons\"},\"ekit_socialshare_label_text\":\"linkedin\",\"_id\":\"df3e9d2\",\"ekit_socialshare_icon_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_socialshare_icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_socialshare_label\":\"\",\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_bg_color\":\"#3b5998\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"},{\"_id\":\"9a2d109\",\"ekit_socialshare_icons\":{\"value\":\"icon icon-whatsapp-1\",\"library\":\"ekiticons\"},\"ekit_socialshare_label_text\":\"whatsapp\",\"ekit_socialshare_label\":\"Whatsapp\",\"ekit_socialshare_icon_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_socialshare_icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_bg_color\":\"#3b5998\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialshare_list_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"ekit_socialshare_list_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c37b01a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary Of The Case Studies\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"align\":\"left\",\"header_size\":\"h3\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bf0d61c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3acf27f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.406999999999996,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50399d2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. sed do eiusmod tempor incididunt ut labore \",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1829a28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"85\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-talking-at-therapy-session-with-male-therapist.jpg\"},\"image_size\":\"full\",\"link_to\":\"file\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d92ec35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Symptoms Encountered\\n\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"align\":\"left\",\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6003dce7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat\",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b298786\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quisque aliquet nibh sit amet lectus auctor\",\"_id\":\"cfa5ced\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Nulla at metus ultricies, placerat augue\",\"_id\":\"7ebb322\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Duis aute irure dolor in reprehenderit in voluptate\",\"_id\":\"413562d\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b28180a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.548999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cc44e5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"100\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up.jpg\"},\"image_size\":\"full\",\"link_to\":\"file\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2bf6e0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\\u00a0<\\/p>\",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7381a113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Soltuions\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"align\":\"left\",\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6135e85e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"61e408b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\\u00a0<\\/p>\",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2723e07b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"622d3d9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"35dc39e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Cases\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"762da13b\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3195d0b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42bcf941\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"791aed82\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"467044ac\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"2ad40cb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"24d34df0\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"233a0dce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ea4b50a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(543,129,'_wp_attached_file','2023/07/portrait-of-professional-male-therapist-in-suit-sh-LEUGTME.jpg'),(544,129,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:820;s:6:\"height\";i:1024;s:4:\"file\";s:70:\"2023/07/portrait-of-professional-male-therapist-in-suit-sh-LEUGTME.jpg\";s:8:\"filesize\";i:180537;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"portrait-of-professional-male-therapist-in-suit-sh-LEUGTME-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17071;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"portrait-of-professional-male-therapist-in-suit-sh-LEUGTME-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8403;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:70:\"portrait-of-professional-male-therapist-in-suit-sh-LEUGTME-768x959.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:959;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96785;}}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:{}}}'),(545,121,'_elementor_page_assets','a:1:{s:6:\"styles\";a:12:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";}}'),(546,121,'_wp_page_template','elementor_header_footer'),(547,121,'envato_tk_source_kit','57'),(548,121,'envato_tk_source_index','2'),(549,126,'_elementor_source_image_hash','2fd136fbd5966fb519c4e2219b8cdf0f2a546d5c'),(550,129,'_elementor_source_image_hash','cf58a4e73f0bd86a9bda012be4b236a5fb8cb8c8'),(551,130,'_elementor_edit_mode','builder'),(552,130,'_elementor_template_type','page'),(553,130,'_elementor_version','3.14.1'),(554,130,'_elementor_data','[{\"id\":\"1b7648ef\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4cd5d86a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6a5d7941\",\"elType\":\"widget\",\"settings\":{\"title\":\"Case Details\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cf922fc\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Case Details\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2bd60193\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"65971052\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e4b5c83\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"content_position\":\"middle\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"854daf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3b6ba1d4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"image_box_shadow_box_shadow_type\":\"yes\",\"image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"1eb3fca4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.956000000000003,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f373063\",\"elType\":\"widget\",\"settings\":{\"title\":\"Couple Problem Solving\",\"header_size\":\"h3\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7dbb33a8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris \",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c0703a3\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-calendar-full\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Date\",\"ekit_icon_box_description_text\":\"June 18, 2021\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=4e452f7\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=accent\"},\"_element_width_mobile\":\"inherit\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"2e7d17c6\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-users2\",\"library\":\"ekiticons\"},\"ekit_icon_box_title_text\":\"Client\",\"ekit_icon_box_description_text\":\"Bill & Melin\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=4e452f7\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"inherit\",\"ekit_icon_box_header_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"583ce1fd\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-folder-1\",\"library\":\"ekiticons\"},\"ekit_icon_box_header_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_title_text\":\"Category\",\"ekit_icon_box_description_text\":\"Couple Problem\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=4e452f7\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=accent\"},\"_element_width_mobile\":\"inherit\",\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"22172f6\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons\":{\"value\":\"jki jki-team-worker-line\",\"library\":\"jkiticon\"},\"ekit_icon_box_header_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_title_text\":\"Mentor\",\"ekit_icon_box_description_text\":\"Jordi Medrano\\n\",\"ekit_icon_box_btn_text\":\"Learn more \",\"ekit_icon_box_show_global_link\":\"\",\"ekit_icon_box_icon_position\":\"left\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_title_bottom_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false,\"size\":\"20\"},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false,\"size\":15},\"ekit_icon_icon_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"ekit_icon_box_icon_space\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":50,\"sizes\":[]},\"__globals__\":{\"ekit_icon_title_color\":\"globals\\/colors?id=primary\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=4e452f7\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_box_icon_primary_color\":\"globals\\/colors?id=accent\"},\"_element_width_mobile\":\"inherit\",\"ekit_icon_box_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"},{\"id\":\"3c599e93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Share It\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=4e452f7\",\"text_color\":\"globals\\/colors?id=primary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1ebd1e61\",\"elType\":\"widget\",\"settings\":{\"ekit_socialshare_list_align\":\"left\",\"ekit_socialshare_add_icons\":[{\"ekit_socialshare_icon_hover_bg_color\":\"\",\"_id\":\"eaaad9b\",\"ekit_socialshare_icon_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_socialshare_icon_color\":\"\",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_bg_color\":\"globals\\/colors?id=accent\",\"ekit_socialshare_icon_hover_bg_color\":\"\"},\"ekit_socialshare_icons\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"ekit_socialshare_label_text\":\"facebook\",\"ekit_socialshare_label\":\"\",\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"},{\"ekit_socialshare_icons\":{\"value\":\"icon icon-twitter\",\"library\":\"ekiticons\"},\"ekit_socialshare_label_text\":\"twitter\",\"_id\":\"a4a3d64\",\"ekit_socialshare_icon_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_socialshare_icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_socialshare_label\":\"\",\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_bg_color\":\"#3b5998\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"},{\"ekit_socialshare_icons\":{\"value\":\"icon icon-linkedin\",\"library\":\"ekiticons\"},\"ekit_socialshare_label_text\":\"linkedin\",\"_id\":\"df3e9d2\",\"ekit_socialshare_icon_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_socialshare_icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_socialshare_label\":\"\",\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_bg_color\":\"#3b5998\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"},{\"_id\":\"9a2d109\",\"ekit_socialshare_icons\":{\"value\":\"icon icon-whatsapp-1\",\"library\":\"ekiticons\"},\"ekit_socialshare_label_text\":\"whatsapp\",\"ekit_socialshare_label\":\"Whatsapp\",\"ekit_socialshare_icon_color\":\"#FFFFFF\",\"__globals__\":{\"ekit_socialshare_icon_bg_color\":\"globals\\/colors?id=secondary\",\"ekit_socialshare_icon_hover_bg_color\":\"globals\\/colors?id=secondary\"},\"ekit_socialshare_icon_bg_color\":\"\",\"ekit_socialshare_border_border\":\"\",\"ekit_socialshare_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_color\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_normal_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_box_shadow_position\":\" \",\"ekit_socialshare_icon_hover_color\":\"\",\"ekit_socialshare_icon_hover_bg_color\":\"#3b5998\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow_type\":\"\",\"ekit_socialshare_icon_hover_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_type\":\"\",\"ekit_socialshare_list_box_shadow_hover_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"ekit_socialshare_list_box_shadow_hover_box_shadow_position\":\" \",\"ekit_socialshare_border_hover_border\":\"\",\"ekit_socialshare_border_hover_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"ekit_socialshare_border_hover_color\":\"\"}],\"ekit_socialshare_list_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"ekit_socialshare_list_icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"ekit_socialshare_list_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"10\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"ekit_socialshare_list_padding\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"__globals__\":{\"ekit_socialshare_list_typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-social-share\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"4c37b01a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Summary Of The Case Studies\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"align\":\"left\",\"header_size\":\"h3\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3bf0d61c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3acf27f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.406999999999996,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50399d2f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. sed do eiusmod tempor incididunt ut labore \",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1829a28d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"85\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-talking-at-therapy-session-with-male-therapist.jpg\"},\"image_size\":\"full\",\"link_to\":\"file\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1d92ec35\",\"elType\":\"widget\",\"settings\":{\"title\":\"Symptoms Encountered\\n\\n\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"align\":\"left\",\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6003dce7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat\",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5b298786\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Quisque aliquet nibh sit amet lectus auctor\",\"_id\":\"cfa5ced\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Nulla at metus ultricies, placerat augue\",\"_id\":\"7ebb322\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\" Duis aute irure dolor in reprehenderit in voluptate\",\"_id\":\"413562d\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"globals\\/colors?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"5b28180a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.548999999999999,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cc44e5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"100\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up.jpg\"},\"image_size\":\"full\",\"link_to\":\"file\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2bf6e0e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\\u00a0<\\/p>\",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7381a113\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Soltuions\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"align\":\"left\",\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6135e85e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"61e408b9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.\\u00a0<\\/p>\",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2723e07b\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"622d3d9c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#EAEAEA\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"35dc39e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Latest Cases\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"762da13b\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3195d0b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"42bcf941\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"791aed82\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"467044ac\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"2ad40cb4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"24d34df0\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"233a0dce\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ea4b50a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(555,127,'_elementor_page_assets','a:1:{s:6:\"styles\";a:4:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";}}'),(556,127,'_wp_page_template','elementor_header_footer'),(557,127,'envato_tk_source_kit','57'),(558,127,'envato_tk_source_index','6'),(559,131,'_elementor_edit_mode','builder'),(560,131,'_elementor_template_type','page'),(561,132,'_wp_attached_file','2023/07/mental-problems.jpg'),(562,132,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:27:\"2023/07/mental-problems.jpg\";s:8:\"filesize\";i:414481;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"mental-problems-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17996;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"mental-problems-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113387;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"mental-problems-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10077;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"mental-problems-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71986;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"mental-problems-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214168;}s:25:\"elementor_custom_820x1024\";a:4:{s:4:\"file\";s:79:\"elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:1024;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:{}}}'),(563,133,'_wp_attached_file','2023/07/mental-problems-1.jpg'),(564,133,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:29:\"2023/07/mental-problems-1.jpg\";s:8:\"filesize\";i:414481;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"mental-problems-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17996;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"mental-problems-1-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113387;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"mental-problems-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10077;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"mental-problems-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71986;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"mental-problems-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214168;}}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:{}}}'),(565,131,'_elementor_version','3.14.1'),(566,131,'_elementor_data','[{\"id\":\"5a153552\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mature-psychologist-posing-in-group-therapy.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17f99010\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d967463\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e508804\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48644aad\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d7a383c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d380d1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Price\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"align\":\"center\",\"header_size\":\"h5\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60df7c2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choose Your Plan\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dbbdfc9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#7A7A7A\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c7427c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e949d73\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"border_color\":\"#6B7C9326\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"box_shadow_box_shadow_type\":\"yes\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c58f219\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Plan\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4974ba0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"$35\",\"header_size\":\"span\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ff23f0d\",\"title_color\":\"globals\\/colors?id=secondary\"},\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"154e545\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Per Hour\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6df17ae3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Conseling\",\"_id\":\"fc279ac\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Evaluation of Psychological\",\"_id\":\"62e63ab\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Specific Advice Situation\",\"_id\":\"b182eb5\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Customer Support\",\"_id\":\"bd69b24\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"divider_color\":\"#6B7C9326\",\"icon_color\":\"#FF4255\",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"58229a6c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#6B7C9326\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2cc698d8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\",\"button_text_color\":\"\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#E17141\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"},{\"id\":\"228f3453\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_color\":\"#6B7C9326\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"5\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"box_shadow_box_shadow_type\":\"yes\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_color\":\"#E17141\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e97c5ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family Plan\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"title_color\":\"#FFFFFF\",\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d72593\",\"elType\":\"widget\",\"settings\":{\"title\":\"$65\",\"header_size\":\"span\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ff23f0d\",\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70fc86d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Per Hour\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"text_color\":\"#E5E5E5\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58f8f12e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Conseling\",\"_id\":\"fc279ac\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Evaluation of Psychological\",\"_id\":\"62e63ab\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Specific Advice Situation\",\"_id\":\"b182eb5\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Customer Support\",\"_id\":\"bd69b24\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"divider_color\":\"#FCFCFC26\",\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"466d7433\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FCFCFC26\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39be6b17\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\",\"hover_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"button_text_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"},{\"id\":\"2306b9e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_color\":\"#6B7C9326\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"box_shadow_box_shadow_type\":\"yes\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6732f143\",\"elType\":\"widget\",\"settings\":{\"title\":\"Group Plan\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"726fccae\",\"elType\":\"widget\",\"settings\":{\"title\":\"$85\",\"header_size\":\"span\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ff23f0d\",\"title_color\":\"globals\\/colors?id=secondary\"},\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14f03dab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Per Hour\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f3913c3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Conseling\",\"_id\":\"fc279ac\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Evaluation of Psychological\",\"_id\":\"62e63ab\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Specific Advice Situation\",\"_id\":\"b182eb5\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Customer Support\",\"_id\":\"bd69b24\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"divider_color\":\"#6B7C9326\",\"icon_color\":\"#FF4255\",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74363668\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#6B7C9326\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"310a1450\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\",\"button_text_color\":\"\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"35708b24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26381623\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ae0b0e4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":335,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"61fd4c7e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d23f89b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.966999999999999,\"_inline_size_tablet\":60,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ce36869\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_title_text\":\"12 Years Of Experiences\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consect adipiscing elit, sed do eiusmod tempor incididunt ut labore \",\"ekit_icon_box_enable_btn\":\"yes\",\"ekit_icon_box_btn_text\":\"Make Appointment\",\"ekit_icon_box_icons\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#FFFFFF00\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=50928c2\",\"ekit_icon_title_color\":\"globals\\/colors?id=e5c8540\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_description_color\":\"globals\\/colors?id=text\",\"ekit_icon_box_button_text_color\":\"globals\\/colors?id=accent\",\"ekit_icon_box_typography_group_typography\":\"globals\\/typography?id=a892a9f\"},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"3e3816b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.033000000000001,\"_inline_size_tablet\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d6c5e52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34999999999999998,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_color\":\"#01221F\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":77,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":-15,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58d65636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"align\":\"center\",\"header_size\":\"h5\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13bcc33b\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Patients Say About Us\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6eb2bf3e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Carlos Stein\",\"_id\":\"2f89243\",\"designation\":\"Student\",\"review\":\"vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia\",\"client_photo\":{\"id\":\"92\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/MKLVKTE.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo_active\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"use_hover_logo\":\"\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Aneesa Andrews\",\"_id\":\"f6aef75\",\"designation\":\"Co-Founder HCM\",\"review\":\"vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia\",\"client_photo\":{\"id\":\"108\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/UUFGSJH.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo_active\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"use_hover_logo\":\"\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Carolyn Hood\",\"_id\":\"b10838d\",\"designation\":\"Entrepreneur\",\"review\":\"vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia\",\"client_photo\":{\"id\":\"116\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/CASCKD8.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo_active\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"use_hover_logo\":\"\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"}],\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"center\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_testimonial_section_wathermark_margin_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_client_image_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":1,\"blur\":4,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_testimonial_client_image_margin_\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_client_image_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=5702cc8\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=01acdab\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"ekit_testimonial_designation_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_image_border_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_border_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_section_wathermark_icon_badge_background_color\":\"\"},\"ekit_testimonial_speed\":3000,\"ekit_testimonial_client_name_spacing_bottom\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_left_right_spacing_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_layout_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_animation_delay\":100,\"ekit_testimonial_layout_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_background_color\":\"#FFFFFF00\",\"ekit_testimonial_description_color\":\"#7A7A7A\",\"ekit_testimonial_section_wathermark_icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_icon_badge_background_background\":\"classic\",\"ekit_testimonial_section_wathermark_icon_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_client_name_normal_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_border_color\":\"#06685F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_badge_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_testimonial_section_wathermark_color\":\"#E17141\",\"ekit_testimonial_client_image_border_color\":\"#E17141\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_wartermarks\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-left-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-right-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_slideshow_gallery\":[],\"ekit_testimonial_layout_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_slideshow_gallery\":[],\"ekit_testimonial_active_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_slideshow_gallery\":[],\"ekit_testimonial_client_image_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_slideshow_gallery\":[],\"ekit_testimonial_nav_background_normal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_slideshow_gallery\":[],\"ekit_testimonial_nav_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"616a437d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b40da07\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27fd0b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30a18152\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12a666c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"606988dc\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7fa18029\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ec30a4a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"5baa880f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"664a7170\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-and-psychological-help-concept-young-woman-with-depression-on-counseling-session-with.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"6fab0ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27713b71\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(567,132,'_elementor_source_image_hash','cced45fe1c7f72ca14dae833fae6b6d2b4b5e7aa'),(568,134,'_wp_attached_file','2023/07/beautiful-psychologist-posing-for-photography-GD5VTJS.jpg'),(569,134,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:820;s:6:\"height\";i:1024;s:4:\"file\";s:65:\"2023/07/beautiful-psychologist-posing-for-photography-GD5VTJS.jpg\";s:8:\"filesize\";i:152954;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:65:\"beautiful-psychologist-posing-for-photography-GD5VTJS-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17380;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:65:\"beautiful-psychologist-posing-for-photography-GD5VTJS-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8149;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:65:\"beautiful-psychologist-posing-for-photography-GD5VTJS-768x959.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:959;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86405;}}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:{}}}'),(570,134,'_elementor_source_image_hash','9018597184de4ba6894fbc9d71d125eaa4ae17d0'),(571,133,'_elementor_source_image_hash','cced45fe1c7f72ca14dae833fae6b6d2b4b5e7aa'),(572,135,'_elementor_edit_mode','builder'),(573,135,'_elementor_template_type','page'),(574,135,'_elementor_version','3.14.1'),(575,135,'_elementor_data','[{\"id\":\"5a153552\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"73\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mature-psychologist-posing-in-group-therapy.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"17f99010\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d967463\",\"elType\":\"widget\",\"settings\":{\"title\":\"Pricing\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e508804\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Pricing\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"48644aad\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"d7a383c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d380d1c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Price\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"align\":\"center\",\"header_size\":\"h5\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60df7c2c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Choose Your Plan\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dbbdfc9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#7A7A7A\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c7427c0\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e949d73\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":\"1\"},\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"border_color\":\"#6B7C9326\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"box_shadow_box_shadow_type\":\"yes\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4c58f219\",\"elType\":\"widget\",\"settings\":{\"title\":\"Personal Plan\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4974ba0a\",\"elType\":\"widget\",\"settings\":{\"title\":\"$35\",\"header_size\":\"span\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ff23f0d\",\"title_color\":\"globals\\/colors?id=secondary\"},\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"154e545\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Per Hour\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6df17ae3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Conseling\",\"_id\":\"fc279ac\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Evaluation of Psychological\",\"_id\":\"62e63ab\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Specific Advice Situation\",\"_id\":\"b182eb5\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Customer Support\",\"_id\":\"bd69b24\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"divider_color\":\"#6B7C9326\",\"icon_color\":\"#FF4255\",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"58229a6c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#6B7C9326\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2cc698d8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\",\"button_text_color\":\"\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#E17141\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"},{\"id\":\"228f3453\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_color\":\"#6B7C9326\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":\"5\",\"blur\":\"15\",\"spread\":\"0\",\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"box_shadow_box_shadow_type\":\"yes\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_color\":\"#E17141\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6e97c5ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"Family Plan\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"title_color\":\"#FFFFFF\",\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d72593\",\"elType\":\"widget\",\"settings\":{\"title\":\"$65\",\"header_size\":\"span\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ff23f0d\",\"title_color\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"70fc86d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Per Hour\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"text_color\":\"#E5E5E5\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"58f8f12e\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Conseling\",\"_id\":\"fc279ac\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Evaluation of Psychological\",\"_id\":\"62e63ab\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Specific Advice Situation\",\"_id\":\"b182eb5\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Customer Support\",\"_id\":\"bd69b24\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"divider_color\":\"#FCFCFC26\",\"icon_color\":\"#FFFFFF\",\"text_color\":\"#FFFFFF\",\"__globals__\":{\"icon_color\":\"\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"466d7433\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FCFCFC26\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"39be6b17\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\",\"hover_color\":\"\",\"button_text_color\":\"globals\\/colors?id=secondary\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"button_text_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"},{\"id\":\"2306b9e1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"border_color\":\"#6B7C9326\",\"box_shadow_box_shadow\":{\"horizontal\":\"0\",\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"box_shadow_box_shadow_type\":\"yes\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6732f143\",\"elType\":\"widget\",\"settings\":{\"title\":\"Group Plan\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=7f517b0\"},\"header_size\":\"h3\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"726fccae\",\"elType\":\"widget\",\"settings\":{\"title\":\"$85\",\"header_size\":\"span\",\"align\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=ff23f0d\",\"title_color\":\"globals\\/colors?id=secondary\"},\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"14f03dab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Per Hour\",\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4f3913c3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Private Conseling\",\"_id\":\"fc279ac\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Evaluation of Psychological\",\"_id\":\"62e63ab\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Specific Advice Situation\",\"_id\":\"b182eb5\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Customer Support\",\"_id\":\"bd69b24\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"50\",\"sizes\":[]},\"icon_align\":\"center\",\"divider\":\"yes\",\"divider_width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"divider_color\":\"#6B7C9326\",\"icon_color\":\"#FF4255\",\"text_color\":\"#7A7A7A\",\"__globals__\":{\"icon_color\":\"globals\\/colors?id=secondary\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74363668\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":\"70\",\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#6B7C9326\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"310a1450\",\"elType\":\"widget\",\"settings\":{\"text\":\"Get Started\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\",\"button_text_color\":\"\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"35708b24\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26381623\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ae0b0e4\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":335,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"61fd4c7e\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d23f89b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.966999999999999,\"_inline_size_tablet\":60,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ce36869\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_title_text\":\"12 Years Of Experiences\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consect adipiscing elit, sed do eiusmod tempor incididunt ut labore \",\"ekit_icon_box_enable_btn\":\"yes\",\"ekit_icon_box_btn_text\":\"Make Appointment\",\"ekit_icon_box_icons\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#FFFFFF00\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=50928c2\",\"ekit_icon_title_color\":\"globals\\/colors?id=e5c8540\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_description_color\":\"globals\\/colors?id=text\",\"ekit_icon_box_button_text_color\":\"globals\\/colors?id=accent\",\"ekit_icon_box_typography_group_typography\":\"globals\\/typography?id=a892a9f\"},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"3e3816b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.033000000000001,\"_inline_size_tablet\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3d6c5e52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34999999999999998,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_color\":\"#01221F\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":77,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":-15,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58d65636\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"align\":\"center\",\"header_size\":\"h5\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"13bcc33b\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Patients Say About Us\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6eb2bf3e\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Carlos Stein\",\"_id\":\"2f89243\",\"designation\":\"Student\",\"review\":\"vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia\",\"client_photo\":{\"id\":\"92\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/MKLVKTE.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo_active\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"use_hover_logo\":\"\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Aneesa Andrews\",\"_id\":\"f6aef75\",\"designation\":\"Co-Founder HCM\",\"review\":\"vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia\",\"client_photo\":{\"id\":\"108\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/UUFGSJH.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo_active\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"use_hover_logo\":\"\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Carolyn Hood\",\"_id\":\"b10838d\",\"designation\":\"Entrepreneur\",\"review\":\"vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia\",\"client_photo\":{\"id\":\"116\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/CASCKD8.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo_active\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"use_hover_logo\":\"\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"}],\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"center\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_testimonial_section_wathermark_margin_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_client_image_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":1,\"blur\":4,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_testimonial_client_image_margin_\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_client_image_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=5702cc8\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=01acdab\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"ekit_testimonial_designation_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_image_border_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_border_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_section_wathermark_icon_badge_background_color\":\"\"},\"ekit_testimonial_speed\":3000,\"ekit_testimonial_client_name_spacing_bottom\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_left_right_spacing_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_layout_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_animation_delay\":100,\"ekit_testimonial_layout_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_background_color\":\"#FFFFFF00\",\"ekit_testimonial_description_color\":\"#7A7A7A\",\"ekit_testimonial_section_wathermark_icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_icon_badge_background_background\":\"classic\",\"ekit_testimonial_section_wathermark_icon_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_client_name_normal_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_border_color\":\"#06685F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_badge_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_testimonial_section_wathermark_color\":\"#E17141\",\"ekit_testimonial_client_image_border_color\":\"#E17141\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_wartermarks\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-left-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-right-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_slideshow_gallery\":[],\"ekit_testimonial_layout_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_slideshow_gallery\":[],\"ekit_testimonial_active_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_slideshow_gallery\":[],\"ekit_testimonial_client_image_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_slideshow_gallery\":[],\"ekit_testimonial_nav_background_normal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_slideshow_gallery\":[],\"ekit_testimonial_nav_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"616a437d\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b40da07\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27fd0b34\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30a18152\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"12a666c2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"606988dc\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7fa18029\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ec30a4a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"5baa880f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"664a7170\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"126\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-and-psychological-help-concept-young-woman-with-depression-on-counseling-session-with.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"6fab0ada\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27713b71\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(576,131,'_elementor_page_assets','a:1:{s:6:\"styles\";a:7:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";}}'),(577,131,'_wp_page_template','elementor_header_footer'),(578,131,'envato_tk_source_kit','57'),(579,131,'envato_tk_source_index','8'),(580,136,'_elementor_edit_mode','builder'),(581,136,'_elementor_template_type','page'),(582,136,'_elementor_version','3.14.1'),(583,136,'_elementor_data','[{\"id\":\"5a4285f8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"76\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-e1624799493930.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74b1222b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29e9dd23\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychologist\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33023b72\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Psychologist\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"178149e6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27fcbb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ff044e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychologist\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27e0da07\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet With Our Psychologist\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55c7e9ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e99763f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7437a722\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"aa26bae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/female-psychologist-in-office-FHV8Q5Z.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44bd4b4e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Merryn Schofield\",\"sg_title_focused\":\"\",\"sg_subtitle_enable\":\"yes\",\"sg_subtitle_heading\":\"Psychologist\",\"sg_description_enable\":\"\",\"sg_description\":\"Lorem ipsum dolor sit amet, consecte adipisci elit, sed do eiusmod tempor incididunt ut labore et dolore\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"sg_separator_style\":\"custom\",\"st_title_color_responsive\":\"#FFFFFF\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"st_subtitle_color_responsive\":\"#E17141\",\"st_description_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"st_subtitle_color_responsive\":\"globals\\/colors?id=accent\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_subtitle_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_subtitle_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"sg_subtitle_position\":\"before\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_family\":\"Inter\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_description_typography_content_typography_font_weight\":\"300\",\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_color\":\"#01221F\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7ff78f5f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"globals\\/colors?id=50928c2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"0\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"},{\"id\":\"62f7a637\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"59c93ea6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/psychologist-in-office-WAUZF95.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"17834554\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Thierry Brady\",\"sg_title_focused\":\"\",\"sg_subtitle_enable\":\"yes\",\"sg_subtitle_heading\":\"Psychologist\",\"sg_description_enable\":\"\",\"sg_description\":\"Lorem ipsum dolor sit amet, consecte adipisci elit, sed do eiusmod tempor incididunt ut labore et dolore\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"sg_separator_style\":\"custom\",\"st_title_color_responsive\":\"#FFFFFF\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"st_subtitle_color_responsive\":\"#E17141\",\"st_description_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"st_subtitle_color_responsive\":\"globals\\/colors?id=accent\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_subtitle_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_subtitle_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"sg_subtitle_position\":\"before\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_family\":\"Inter\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_description_typography_content_typography_font_weight\":\"300\",\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_color\":\"#01221F\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"410796e6\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"globals\\/colors?id=50928c2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"0\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"},{\"id\":\"7df0f699\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73f06e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-man-at-group-therapy-session-7HU8Q2C.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51ee089d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Wilson Gilbert\",\"sg_title_focused\":\"\",\"sg_subtitle_enable\":\"yes\",\"sg_subtitle_heading\":\"Psychologist\",\"sg_description_enable\":\"\",\"sg_description\":\"Lorem ipsum dolor sit amet, consecte adipisci elit, sed do eiusmod tempor incididunt ut labore et dolore\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"sg_separator_style\":\"custom\",\"st_title_color_responsive\":\"#FFFFFF\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"st_subtitle_color_responsive\":\"#E17141\",\"st_description_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"st_subtitle_color_responsive\":\"globals\\/colors?id=accent\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_subtitle_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_subtitle_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"sg_subtitle_position\":\"before\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_family\":\"Inter\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_description_typography_content_typography_font_weight\":\"300\",\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_color\":\"#01221F\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"3656e8d7\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"globals\\/colors?id=50928c2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"0\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"1bd58ded\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5bdaf677\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d7eaabd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"122\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-counselor-RZ2YJEB.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5602bcac\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Helena Barclay\",\"sg_title_focused\":\"\",\"sg_subtitle_enable\":\"yes\",\"sg_subtitle_heading\":\"Psychologist\",\"sg_description_enable\":\"\",\"sg_description\":\"Lorem ipsum dolor sit amet, consecte adipisci elit, sed do eiusmod tempor incididunt ut labore et dolore\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"sg_separator_style\":\"custom\",\"st_title_color_responsive\":\"#FFFFFF\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"st_subtitle_color_responsive\":\"#E17141\",\"st_description_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"st_subtitle_color_responsive\":\"globals\\/colors?id=accent\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_subtitle_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_subtitle_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"sg_subtitle_position\":\"before\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_family\":\"Inter\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_description_typography_content_typography_font_weight\":\"300\",\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_color\":\"#01221F\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"1e876b97\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"globals\\/colors?id=50928c2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"0\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"},{\"id\":\"54c1d848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ed29840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/portrait-of-professional-male-therapist-in-suit-sh-LEUGTME.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e60802a\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Jordi Medrano\",\"sg_title_focused\":\"\",\"sg_subtitle_enable\":\"yes\",\"sg_subtitle_heading\":\"Psychologist\",\"sg_description_enable\":\"\",\"sg_description\":\"Lorem ipsum dolor sit amet, consecte adipisci elit, sed do eiusmod tempor incididunt ut labore et dolore\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"sg_separator_style\":\"custom\",\"st_title_color_responsive\":\"#FFFFFF\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"st_subtitle_color_responsive\":\"#E17141\",\"st_description_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"st_subtitle_color_responsive\":\"globals\\/colors?id=accent\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_subtitle_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_subtitle_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"sg_subtitle_position\":\"before\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_family\":\"Inter\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_description_typography_content_typography_font_weight\":\"300\",\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_color\":\"#01221F\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"27df9a3f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"globals\\/colors?id=50928c2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"0\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"},{\"id\":\"36cf684b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"383b4625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/beautiful-psychologist-posing-for-photography-GD5VTJS.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"15d3c96b\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Katarina Acosta\",\"sg_title_focused\":\"\",\"sg_subtitle_enable\":\"yes\",\"sg_subtitle_heading\":\"Psychologist\",\"sg_description_enable\":\"\",\"sg_description\":\"Lorem ipsum dolor sit amet, consecte adipisci elit, sed do eiusmod tempor incididunt ut labore et dolore\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"sg_separator_style\":\"custom\",\"st_title_color_responsive\":\"#FFFFFF\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"st_subtitle_color_responsive\":\"#E17141\",\"st_description_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"st_subtitle_color_responsive\":\"globals\\/colors?id=accent\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_subtitle_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_subtitle_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"sg_subtitle_position\":\"before\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_family\":\"Inter\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_description_typography_content_typography_font_weight\":\"300\",\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_color\":\"#01221F\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"73768635\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"globals\\/colors?id=50928c2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"0\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"1e8230ca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a50ea46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cd0dedf\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"376b983b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3135d823\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50014e86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ed8b0cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"440f0359\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7485c6f8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"2037c5c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e661512\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"522f152b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c6a678d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"212a617\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"588f166f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"347eab3e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43d8b0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"25325d2e\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_player_self_hosted\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"self_poster_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_slideshow_gallery\":[],\"ekit_video_popup_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"504299bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5231ff71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1afb9657\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21563689\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40da3091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32aa7135\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"107bac69\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"1e36ba54\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"4bd6ae80\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"300ff7cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fabe2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31585ec6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"115c0084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43f57182\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"14273272\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33bf580c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"104af3e6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72c70c73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"29b4d3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"206c5cda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55ec6a43\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3c738164\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"748491c2\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6c69661a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(584,137,'_elementor_edit_mode','builder'),(585,137,'_elementor_template_type','page'),(586,138,'_elementor_edit_mode','builder'),(587,138,'_elementor_template_type','page'),(588,137,'_elementor_version','3.14.1');
INSERT INTO `wp_postmeta` VALUES (589,137,'_elementor_data','[{\"id\":\"1bd912d7\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27be8b7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3eaf8499\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59a53512\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b967c7d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b442530\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b05238e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce8134d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum \",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"70701748\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"630a0bd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5760b381\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Quality Services\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_height_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_readmore_button_icon\":{\"value\":\"fas fa-book\",\"library\":\"fa-solid\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"535024a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4775949b\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-team-1-line\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Professional Team\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#E17141\",\"st_icon_height_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_readmore_button_icon\":{\"value\":\"fas fa-book\",\"library\":\"fa-solid\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"197ef1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"faf1d3c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Dedicated Support\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_height_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_readmore_button_icon\":{\"value\":\"fas fa-book\",\"library\":\"fa-solid\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75d68950\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c670ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d5610f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b1093b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3632a305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1028d3e3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"784f2cf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d02bf0b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"43eed463\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_player_self_hosted\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"self_poster_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_slideshow_gallery\":[],\"ekit_video_popup_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"35b0452c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5502a83f\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"4e04458\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"765584b1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"69931bbe\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"389c44bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e037afd\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"6fe40226\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"241f45b1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"4c139438\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e30b679\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2,\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f2b6dec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7da5da50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c98529b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e47ba81\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78f94cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"392f9e95\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"4b1fc3a\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"6e45a069\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2326618b\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"14a645e8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"171f1e8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b9c1eb0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"68e6a0d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"147c5d7b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1413fb41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38c62015\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"29f6c147\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4858b2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"4c2c2988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f81e3d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3448125e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"11b54ed3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7fdbd0c3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62a350df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a41824c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f478bcb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2db5969\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make Appointment\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10d002c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t Hesitate To Contact Us  For Better Information And Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4106604d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26c49a22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fbbea28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.509,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7193eb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":474,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":267,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"63c0ab39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.491,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c474162\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"547***1625933662809\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a5c94a0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52dcee88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"862702c\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26c42dca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Question\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60e05e22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"34dd79f4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67591e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"259e6aa6\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\" How to Make an Appointment for Group Service?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"6c3aab0\"},{\"acc_title\":\"How Long Will My Treatment Go on For?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"3203035\",\"ekit_acc_is_active\":\"no\"},{\"acc_title\":\"What Payment Methods Are Available? \",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"eb62296\",\"ekit_acc_is_active\":\"\"}],\"ekit_accordion_open_first_slide\":\"\",\"ekit_accordion_left_icons\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"ekit_accordion_left_icon_actives\":{\"value\":\"fas fa-angle-up\",\"library\":\"fa-solid\"},\"ekit_accordion_background_background\":\"classic\",\"ekit_accordion_background_color\":\"#E17141\",\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_open_color\":\"#E7EBF0\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_background_close_color\":\"#FFFFFF\",\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_close_color\":\"#E7EBF0\",\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_accordion_section_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"ekit_accordion_title_color\":\"\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=text\",\"ekit_accordion_icon_color_close\":\"globals\\/colors?id=accent\",\"ekit_accordion_icon_color\":\"\",\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=1660fa3\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_background_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_close_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_accordion_right_icon_actives\":{\"value\":\"icon icon-up-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_title_color\":\"#FFFFFF\",\"ekit_accordion_border_radious_curve_shape_open\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_title_color_close\":\"#06685F\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_box_shadow_close_box_shadow_type\":\"yes\",\"ekit_accordion_box_shadow_close_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_accordion_content_color\":\"#7A7A7A\",\"ekit_accordion_icon_color_close\":\"#E17141\",\"ekit_accordion_icon_color\":\"#FFFFFF\",\"ekit_accordion_right_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_slideshow_gallery\":[],\"ekit_accordion_background_close_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_slideshow_gallery\":[],\"ekit_accordion_content_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_slideshow_gallery\":[],\"ekit_accordion_icon_box_open_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_close_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_slideshow_gallery\":[],\"ekit_accordion_closed_icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7809a3cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14b62de3\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\" How to Make an Appointment for Group Service?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"6c3aab0\"},{\"acc_title\":\"How Long Will My Treatment Go on For?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"3203035\",\"ekit_acc_is_active\":\"no\"},{\"acc_title\":\"What Payment Methods Are Available? \",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"eb62296\",\"ekit_acc_is_active\":\"\"}],\"ekit_accordion_open_first_slide\":\"\",\"ekit_accordion_left_icons\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"ekit_accordion_left_icon_actives\":{\"value\":\"fas fa-angle-up\",\"library\":\"fa-solid\"},\"ekit_accordion_background_background\":\"classic\",\"ekit_accordion_background_color\":\"#E17141\",\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_open_color\":\"#E7EBF0\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_background_close_color\":\"#FFFFFF\",\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_close_color\":\"#E7EBF0\",\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_accordion_section_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"ekit_accordion_title_color\":\"\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=text\",\"ekit_accordion_icon_color_close\":\"globals\\/colors?id=accent\",\"ekit_accordion_icon_color\":\"\",\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=1660fa3\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_background_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_close_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_accordion_right_icon_actives\":{\"value\":\"icon icon-up-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_title_color\":\"#FFFFFF\",\"ekit_accordion_border_radious_curve_shape_open\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_title_color_close\":\"#06685F\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_box_shadow_close_box_shadow_type\":\"yes\",\"ekit_accordion_box_shadow_close_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_accordion_content_color\":\"#7A7A7A\",\"ekit_accordion_icon_color_close\":\"#E17141\",\"ekit_accordion_icon_color\":\"#FFFFFF\",\"ekit_accordion_right_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_slideshow_gallery\":[],\"ekit_accordion_background_close_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_slideshow_gallery\":[],\"ekit_accordion_content_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_slideshow_gallery\":[],\"ekit_accordion_icon_box_open_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_close_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_slideshow_gallery\":[],\"ekit_accordion_closed_icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(590,139,'_elementor_edit_mode','builder'),(591,139,'_elementor_template_type','page'),(592,139,'_elementor_version','3.14.1'),(593,139,'_elementor_data','[{\"id\":\"5a4285f8\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"76\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-e1624799493930.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74b1222b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29e9dd23\",\"elType\":\"widget\",\"settings\":{\"title\":\"Psychologist\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"33023b72\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Psychologist\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"178149e6\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27fcbb1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2ff044e9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychologist\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"27e0da07\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet With Our Psychologist\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55c7e9ea\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e99763f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7437a722\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"aa26bae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"84\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/female-psychologist-in-office-FHV8Q5Z.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44bd4b4e\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Merryn Schofield\",\"sg_title_focused\":\"\",\"sg_subtitle_enable\":\"yes\",\"sg_subtitle_heading\":\"Psychologist\",\"sg_description_enable\":\"\",\"sg_description\":\"Lorem ipsum dolor sit amet, consecte adipisci elit, sed do eiusmod tempor incididunt ut labore et dolore\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"sg_separator_style\":\"custom\",\"st_title_color_responsive\":\"#FFFFFF\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"st_subtitle_color_responsive\":\"#E17141\",\"st_description_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"st_subtitle_color_responsive\":\"globals\\/colors?id=accent\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_subtitle_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_subtitle_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"sg_subtitle_position\":\"before\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_family\":\"Inter\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_description_typography_content_typography_font_weight\":\"300\",\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_color\":\"#01221F\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"7ff78f5f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"globals\\/colors?id=50928c2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"0\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"},{\"id\":\"62f7a637\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"59c93ea6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"94\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/psychologist-in-office-WAUZF95.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"17834554\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Thierry Brady\",\"sg_title_focused\":\"\",\"sg_subtitle_enable\":\"yes\",\"sg_subtitle_heading\":\"Psychologist\",\"sg_description_enable\":\"\",\"sg_description\":\"Lorem ipsum dolor sit amet, consecte adipisci elit, sed do eiusmod tempor incididunt ut labore et dolore\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"sg_separator_style\":\"custom\",\"st_title_color_responsive\":\"#FFFFFF\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"st_subtitle_color_responsive\":\"#E17141\",\"st_description_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"st_subtitle_color_responsive\":\"globals\\/colors?id=accent\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_subtitle_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_subtitle_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"sg_subtitle_position\":\"before\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_family\":\"Inter\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_description_typography_content_typography_font_weight\":\"300\",\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_color\":\"#01221F\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"410796e6\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"globals\\/colors?id=50928c2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"0\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"},{\"id\":\"7df0f699\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"73f06e0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"114\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-man-at-group-therapy-session-7HU8Q2C.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"51ee089d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Wilson Gilbert\",\"sg_title_focused\":\"\",\"sg_subtitle_enable\":\"yes\",\"sg_subtitle_heading\":\"Psychologist\",\"sg_description_enable\":\"\",\"sg_description\":\"Lorem ipsum dolor sit amet, consecte adipisci elit, sed do eiusmod tempor incididunt ut labore et dolore\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"sg_separator_style\":\"custom\",\"st_title_color_responsive\":\"#FFFFFF\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"st_subtitle_color_responsive\":\"#E17141\",\"st_description_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"st_subtitle_color_responsive\":\"globals\\/colors?id=accent\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_subtitle_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_subtitle_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"sg_subtitle_position\":\"before\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_family\":\"Inter\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_description_typography_content_typography_font_weight\":\"300\",\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_color\":\"#01221F\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"3656e8d7\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"globals\\/colors?id=50928c2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"0\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"1bd58ded\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5bdaf677\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d7eaabd\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"122\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-counselor-RZ2YJEB.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5602bcac\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Helena Barclay\",\"sg_title_focused\":\"\",\"sg_subtitle_enable\":\"yes\",\"sg_subtitle_heading\":\"Psychologist\",\"sg_description_enable\":\"\",\"sg_description\":\"Lorem ipsum dolor sit amet, consecte adipisci elit, sed do eiusmod tempor incididunt ut labore et dolore\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"sg_separator_style\":\"custom\",\"st_title_color_responsive\":\"#FFFFFF\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"st_subtitle_color_responsive\":\"#E17141\",\"st_description_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"st_subtitle_color_responsive\":\"globals\\/colors?id=accent\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_subtitle_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_subtitle_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"sg_subtitle_position\":\"before\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_family\":\"Inter\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_description_typography_content_typography_font_weight\":\"300\",\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_color\":\"#01221F\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"1e876b97\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"globals\\/colors?id=50928c2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"0\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"},{\"id\":\"54c1d848\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"ed29840\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"129\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/portrait-of-professional-male-therapist-in-suit-sh-LEUGTME.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3e60802a\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Jordi Medrano\",\"sg_title_focused\":\"\",\"sg_subtitle_enable\":\"yes\",\"sg_subtitle_heading\":\"Psychologist\",\"sg_description_enable\":\"\",\"sg_description\":\"Lorem ipsum dolor sit amet, consecte adipisci elit, sed do eiusmod tempor incididunt ut labore et dolore\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"sg_separator_style\":\"custom\",\"st_title_color_responsive\":\"#FFFFFF\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"st_subtitle_color_responsive\":\"#E17141\",\"st_description_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"st_subtitle_color_responsive\":\"globals\\/colors?id=accent\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_subtitle_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_subtitle_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"sg_subtitle_position\":\"before\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_family\":\"Inter\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_description_typography_content_typography_font_weight\":\"300\",\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_color\":\"#01221F\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"27df9a3f\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"globals\\/colors?id=50928c2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"0\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"},{\"id\":\"36cf684b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"33\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":100,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"383b4625\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"134\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/beautiful-psychologist-posing-for-photography-GD5VTJS.jpg\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"15d3c96b\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"Katarina Acosta\",\"sg_title_focused\":\"\",\"sg_subtitle_enable\":\"yes\",\"sg_subtitle_heading\":\"Psychologist\",\"sg_description_enable\":\"\",\"sg_description\":\"Lorem ipsum dolor sit amet, consecte adipisci elit, sed do eiusmod tempor incididunt ut labore et dolore\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"sg_separator_style\":\"custom\",\"st_title_color_responsive\":\"#FFFFFF\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-5\",\"left\":\"0\",\"isLinked\":false},\"st_subtitle_color_responsive\":\"#E17141\",\"st_description_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"_background_background\":\"classic\",\"__globals__\":{\"_background_color\":\"\",\"st_subtitle_color_responsive\":\"globals\\/colors?id=accent\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_subtitle_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_subtitle_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"sg_subtitle_position\":\"before\",\"st_description_typography_content_typography_typography\":\"custom\",\"st_description_typography_content_typography_font_family\":\"Inter\",\"st_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_description_typography_content_typography_font_weight\":\"300\",\"st_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"_background_color\":\"#01221F\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"},{\"id\":\"73768635\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=secondary\",\"hover_secondary_color\":\"globals\\/colors?id=accent\",\"_background_color\":\"globals\\/colors?id=50928c2\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-36\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"30\",\"isLinked\":false},\"_background_background\":\"classic\",\"_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"columns_mobile\":\"0\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"1e8230ca\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a50ea46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6cd0dedf\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"376b983b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3135d823\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50014e86\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6ed8b0cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"440f0359\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7485c6f8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"2037c5c6\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1e661512\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"522f152b\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c6a678d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"212a617\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"588f166f\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"347eab3e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43d8b0d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"25325d2e\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_player_self_hosted\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"self_poster_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_slideshow_gallery\":[],\"ekit_video_popup_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"504299bb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5231ff71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1afb9657\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"21563689\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40da3091\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32aa7135\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"107bac69\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"1e36ba54\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"4bd6ae80\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"300ff7cc\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3fabe2f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31585ec6\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"115c0084\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43f57182\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"14273272\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33bf580c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"104af3e6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72c70c73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"29b4d3ad\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"206c5cda\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"55ec6a43\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3c738164\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"748491c2\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6c69661a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(594,138,'_elementor_version','3.14.1'),(595,138,'_elementor_data','[{\"id\":\"6f34b990\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fae7512\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"322bf5ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Cases\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bb13943\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cases\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50c49b85\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b36662d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74d256b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b36155d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9c8dd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"343f1f20\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f095baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67e29255\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"cab7eeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30d8606e\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"2d5dea07\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f007ac8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1df2c39e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"729b73b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6100a8c2\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"109\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-talking-to-family-counselor.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Family Counseling\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"70feeff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ad2348e\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"80\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/man-in-stress.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Stress Management\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7e5a5073\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1358b057\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"124\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/psychotherapist-talking-with-patients-of-support-group.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Group Theraphy\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"27236e4c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1537504e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"552737ef\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":335,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6242bc82\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"abb3d60\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.966999999999999,\"_inline_size_tablet\":60,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f11a5cc\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_title_text\":\"12 Years Of Experiences\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consect adipiscing elit, sed do eiusmod tempor incididunt ut labore \",\"ekit_icon_box_enable_btn\":\"yes\",\"ekit_icon_box_btn_text\":\"Make Appointment\",\"ekit_icon_box_icons\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#FFFFFF00\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=50928c2\",\"ekit_icon_title_color\":\"globals\\/colors?id=e5c8540\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_description_color\":\"globals\\/colors?id=text\",\"ekit_icon_box_button_text_color\":\"globals\\/colors?id=accent\",\"ekit_icon_box_typography_group_typography\":\"globals\\/typography?id=a892a9f\"},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"2f657bae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.033000000000001,\"_inline_size_tablet\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bdb793f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34999999999999998,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_color\":\"#01221F\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":77,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":-15,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ad00782\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"align\":\"center\",\"header_size\":\"h5\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76ffcdb3\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Patients Say About Us\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"142fa0aa\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Carlos Stein\",\"_id\":\"2f89243\",\"designation\":\"Student\",\"review\":\"vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia\",\"client_photo\":{\"id\":\"92\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/MKLVKTE.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo_active\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"use_hover_logo\":\"\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Aneesa Andrews\",\"_id\":\"f6aef75\",\"designation\":\"Co-Founder HCM\",\"review\":\"vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia\",\"client_photo\":{\"id\":\"108\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/UUFGSJH.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo_active\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"use_hover_logo\":\"\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Carolyn Hood\",\"_id\":\"b10838d\",\"designation\":\"Entrepreneur\",\"review\":\"vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia\",\"client_photo\":{\"id\":\"116\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/CASCKD8.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo_active\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"use_hover_logo\":\"\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"}],\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"center\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_testimonial_section_wathermark_margin_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_client_image_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":1,\"blur\":4,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_testimonial_client_image_margin_\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_client_image_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=5702cc8\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=01acdab\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"ekit_testimonial_designation_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_image_border_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_border_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_section_wathermark_icon_badge_background_color\":\"\"},\"ekit_testimonial_speed\":3000,\"ekit_testimonial_client_name_spacing_bottom\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_left_right_spacing_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_layout_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_animation_delay\":100,\"ekit_testimonial_layout_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_background_color\":\"#FFFFFF00\",\"ekit_testimonial_description_color\":\"#7A7A7A\",\"ekit_testimonial_section_wathermark_icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_icon_badge_background_background\":\"classic\",\"ekit_testimonial_section_wathermark_icon_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_client_name_normal_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_border_color\":\"#06685F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_badge_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_testimonial_section_wathermark_color\":\"#E17141\",\"ekit_testimonial_client_image_border_color\":\"#E17141\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_wartermarks\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-left-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-right-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_slideshow_gallery\":[],\"ekit_testimonial_layout_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_slideshow_gallery\":[],\"ekit_testimonial_active_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_slideshow_gallery\":[],\"ekit_testimonial_client_image_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_slideshow_gallery\":[],\"ekit_testimonial_nav_background_normal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_slideshow_gallery\":[],\"ekit_testimonial_nav_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1fcbbfe\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7011f41b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b94de5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ec6254\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Question\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59b00fb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"211df919\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74f24d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43119787\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\" How to Make an Appointment for Group Service?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"6c3aab0\"},{\"acc_title\":\"How Long Will My Treatment Go on For?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"3203035\",\"ekit_acc_is_active\":\"no\"},{\"acc_title\":\"What Payment Methods Are Available? \",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"eb62296\",\"ekit_acc_is_active\":\"\"}],\"ekit_accordion_open_first_slide\":\"\",\"ekit_accordion_left_icons\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"ekit_accordion_left_icon_actives\":{\"value\":\"fas fa-angle-up\",\"library\":\"fa-solid\"},\"ekit_accordion_background_background\":\"classic\",\"ekit_accordion_background_color\":\"#E17141\",\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_open_color\":\"#E7EBF0\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_background_close_color\":\"#FFFFFF\",\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_close_color\":\"#E7EBF0\",\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_accordion_section_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"ekit_accordion_title_color\":\"\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=text\",\"ekit_accordion_icon_color_close\":\"globals\\/colors?id=accent\",\"ekit_accordion_icon_color\":\"\",\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=1660fa3\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_background_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_close_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_accordion_right_icon_actives\":{\"value\":\"icon icon-up-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_title_color\":\"#FFFFFF\",\"ekit_accordion_border_radious_curve_shape_open\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_title_color_close\":\"#06685F\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_box_shadow_close_box_shadow_type\":\"yes\",\"ekit_accordion_box_shadow_close_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_accordion_content_color\":\"#7A7A7A\",\"ekit_accordion_icon_color_close\":\"#E17141\",\"ekit_accordion_icon_color\":\"#FFFFFF\",\"ekit_accordion_right_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_slideshow_gallery\":[],\"ekit_accordion_background_close_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_slideshow_gallery\":[],\"ekit_accordion_content_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_slideshow_gallery\":[],\"ekit_accordion_icon_box_open_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_close_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_slideshow_gallery\":[],\"ekit_accordion_closed_icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"8c419e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5451fa2c\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\" How to Make an Appointment for Group Service?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"6c3aab0\"},{\"acc_title\":\"How Long Will My Treatment Go on For?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"3203035\",\"ekit_acc_is_active\":\"no\"},{\"acc_title\":\"What Payment Methods Are Available? \",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"eb62296\",\"ekit_acc_is_active\":\"\"}],\"ekit_accordion_open_first_slide\":\"\",\"ekit_accordion_left_icons\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"ekit_accordion_left_icon_actives\":{\"value\":\"fas fa-angle-up\",\"library\":\"fa-solid\"},\"ekit_accordion_background_background\":\"classic\",\"ekit_accordion_background_color\":\"#E17141\",\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_open_color\":\"#E7EBF0\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_background_close_color\":\"#FFFFFF\",\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_close_color\":\"#E7EBF0\",\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_accordion_section_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"ekit_accordion_title_color\":\"\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=text\",\"ekit_accordion_icon_color_close\":\"globals\\/colors?id=accent\",\"ekit_accordion_icon_color\":\"\",\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=1660fa3\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_background_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_close_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_accordion_right_icon_actives\":{\"value\":\"icon icon-up-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_title_color\":\"#FFFFFF\",\"ekit_accordion_border_radious_curve_shape_open\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_title_color_close\":\"#06685F\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_box_shadow_close_box_shadow_type\":\"yes\",\"ekit_accordion_box_shadow_close_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_accordion_content_color\":\"#7A7A7A\",\"ekit_accordion_icon_color_close\":\"#E17141\",\"ekit_accordion_icon_color\":\"#FFFFFF\",\"ekit_accordion_right_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_slideshow_gallery\":[],\"ekit_accordion_background_close_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_slideshow_gallery\":[],\"ekit_accordion_content_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_slideshow_gallery\":[],\"ekit_accordion_icon_box_open_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_close_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_slideshow_gallery\":[],\"ekit_accordion_closed_icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(596,136,'_elementor_page_assets','a:1:{s:6:\"styles\";a:12:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";}}'),(597,136,'_wp_page_template','elementor_header_footer'),(598,136,'envato_tk_source_kit','57'),(599,136,'envato_tk_source_index','9'),(600,140,'_elementor_edit_mode','builder'),(601,140,'_elementor_template_type','page'),(602,140,'_elementor_version','3.14.1'),(603,140,'_elementor_data','[{\"id\":\"1bd912d7\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":18,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27be8b7e\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3eaf8499\",\"elType\":\"widget\",\"settings\":{\"title\":\"Services\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59a53512\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1b967c7d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b442530\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b05238e\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce8134d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum \",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"70701748\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"630a0bd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5760b381\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Quality Services\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_height_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_readmore_button_icon\":{\"value\":\"fas fa-book\",\"library\":\"fa-solid\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"535024a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4775949b\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-team-1-line\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Professional Team\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#E17141\",\"st_icon_height_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_readmore_button_icon\":{\"value\":\"fas fa-book\",\"library\":\"fa-solid\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"197ef1cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"faf1d3c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Dedicated Support\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_height_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_readmore_button_icon\":{\"value\":\"fas fa-book\",\"library\":\"fa-solid\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"75d68950\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c670ebf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d5610f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4b1093b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3632a305\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1028d3e3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"784f2cf1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2d02bf0b\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"43eed463\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_player_self_hosted\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"self_poster_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_slideshow_gallery\":[],\"ekit_video_popup_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"35b0452c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5502a83f\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"4e04458\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"765584b1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"69931bbe\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"389c44bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e037afd\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"6fe40226\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"241f45b1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"4c139438\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e30b679\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2,\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4f2b6dec\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7da5da50\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c98529b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e47ba81\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78f94cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"392f9e95\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"4b1fc3a\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"6e45a069\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2326618b\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"14a645e8\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"171f1e8b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b9c1eb0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"68e6a0d6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"147c5d7b\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"1413fb41\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38c62015\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"29f6c147\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4858b2e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"4c2c2988\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1f81e3d3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3448125e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"11b54ed3\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"7fdbd0c3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"62a350df\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a41824c\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"360\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"160\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"140\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"background_overlay_color\":\"\",\"background_overlay_color_b\":\"\"},\"background_overlay_color_b\":\"#000414\",\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f478bcb\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2db5969\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make Appointment\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"align\":\"center\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"10d002c7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Don\\u2019t Hesitate To Contact Us  For Better Information And Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4106604d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26c49a22\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"-300\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":20,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"fbbea28\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":48.509,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"background_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.81000000000000005,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":20,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"content_position\":\"space-between\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_xpos\":{\"unit\":\"%\",\"size\":90,\"sizes\":[]},\"background_ypos\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7193eb31\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":474,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":267,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"}],\"isInner\":false},{\"id\":\"63c0ab39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":51.491,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c474162\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"547***1625933662809\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a5c94a0\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52dcee88\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"862702c\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26c42dca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Question\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60e05e22\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"34dd79f4\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67591e7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"259e6aa6\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\" How to Make an Appointment for Group Service?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"6c3aab0\"},{\"acc_title\":\"How Long Will My Treatment Go on For?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"3203035\",\"ekit_acc_is_active\":\"no\"},{\"acc_title\":\"What Payment Methods Are Available? \",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"eb62296\",\"ekit_acc_is_active\":\"\"}],\"ekit_accordion_open_first_slide\":\"\",\"ekit_accordion_left_icons\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"ekit_accordion_left_icon_actives\":{\"value\":\"fas fa-angle-up\",\"library\":\"fa-solid\"},\"ekit_accordion_background_background\":\"classic\",\"ekit_accordion_background_color\":\"#E17141\",\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_open_color\":\"#E7EBF0\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_background_close_color\":\"#FFFFFF\",\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_close_color\":\"#E7EBF0\",\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_accordion_section_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"ekit_accordion_title_color\":\"\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=text\",\"ekit_accordion_icon_color_close\":\"globals\\/colors?id=accent\",\"ekit_accordion_icon_color\":\"\",\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=1660fa3\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_background_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_close_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_accordion_right_icon_actives\":{\"value\":\"icon icon-up-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_title_color\":\"#FFFFFF\",\"ekit_accordion_border_radious_curve_shape_open\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_title_color_close\":\"#06685F\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_box_shadow_close_box_shadow_type\":\"yes\",\"ekit_accordion_box_shadow_close_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_accordion_content_color\":\"#7A7A7A\",\"ekit_accordion_icon_color_close\":\"#E17141\",\"ekit_accordion_icon_color\":\"#FFFFFF\",\"ekit_accordion_right_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_slideshow_gallery\":[],\"ekit_accordion_background_close_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_slideshow_gallery\":[],\"ekit_accordion_content_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_slideshow_gallery\":[],\"ekit_accordion_icon_box_open_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_close_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_slideshow_gallery\":[],\"ekit_accordion_closed_icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"7809a3cb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14b62de3\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\" How to Make an Appointment for Group Service?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"6c3aab0\"},{\"acc_title\":\"How Long Will My Treatment Go on For?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"3203035\",\"ekit_acc_is_active\":\"no\"},{\"acc_title\":\"What Payment Methods Are Available? \",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"eb62296\",\"ekit_acc_is_active\":\"\"}],\"ekit_accordion_open_first_slide\":\"\",\"ekit_accordion_left_icons\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"ekit_accordion_left_icon_actives\":{\"value\":\"fas fa-angle-up\",\"library\":\"fa-solid\"},\"ekit_accordion_background_background\":\"classic\",\"ekit_accordion_background_color\":\"#E17141\",\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_open_color\":\"#E7EBF0\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_background_close_color\":\"#FFFFFF\",\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_close_color\":\"#E7EBF0\",\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_accordion_section_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"ekit_accordion_title_color\":\"\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=text\",\"ekit_accordion_icon_color_close\":\"globals\\/colors?id=accent\",\"ekit_accordion_icon_color\":\"\",\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=1660fa3\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_background_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_close_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_accordion_right_icon_actives\":{\"value\":\"icon icon-up-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_title_color\":\"#FFFFFF\",\"ekit_accordion_border_radious_curve_shape_open\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_title_color_close\":\"#06685F\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_box_shadow_close_box_shadow_type\":\"yes\",\"ekit_accordion_box_shadow_close_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_accordion_content_color\":\"#7A7A7A\",\"ekit_accordion_icon_color_close\":\"#E17141\",\"ekit_accordion_icon_color\":\"#FFFFFF\",\"ekit_accordion_right_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_slideshow_gallery\":[],\"ekit_accordion_background_close_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_slideshow_gallery\":[],\"ekit_accordion_content_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_slideshow_gallery\":[],\"ekit_accordion_icon_box_open_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_close_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_slideshow_gallery\":[],\"ekit_accordion_closed_icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(604,137,'_elementor_page_assets','a:1:{s:6:\"styles\";a:15:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";}}'),(605,141,'_elementor_edit_mode','builder'),(606,137,'_wp_page_template','elementor_header_footer'),(607,141,'_elementor_template_type','page'),(608,137,'envato_tk_source_kit','57'),(609,141,'_elementor_version','3.14.1'),(610,137,'envato_tk_source_index','4'),(611,141,'_elementor_data','[{\"id\":\"6f34b990\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"0\",\"bottom\":\"140\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"background_slideshow_background_size\":\"cover\",\"background_slideshow_background_position\":\"center center\",\"background_slideshow_ken_burns\":\"yes\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_overlay_repeat_tablet\":\"repeat-y\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"10\",\"bottom\":\"100\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"60\",\"left\":\"0\",\"isLinked\":false},\"background_position\":\"initial\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"middle\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"80\",\"bottom\":\"80\",\"left\":\"80\",\"isLinked\":true},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.55000000000000004,\"sizes\":[]},\"background_position_mobile\":\"center center\",\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"90\",\"right\":\"20\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"__globals__\":{\"background_color\":\"\",\"border_color\":\"globals\\/colors?id=50928c2\"},\"background_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_color\":\"#000000\",\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fae7512\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"322bf5ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Cases\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5bb13943\",\"elType\":\"widget\",\"settings\":{\"view\":\"inline\",\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_id\":\"0016cd1\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Cases\",\"selected_icon\":{\"value\":\"fas fa-chevron-right\",\"library\":\"fa-solid\"},\"_id\":\"2110fbb\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"icon_align\":\"center\",\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"\"},\"icon_align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"50c49b85\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b36662d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74d256b3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b36155d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b9c8dd7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"343f1f20\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f095baa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67e29255\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"cab7eeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30d8606e\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"2d5dea07\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"f007ac8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1df2c39e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"729b73b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6100a8c2\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"109\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-talking-to-family-counselor.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Family Counseling\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"70feeff3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5ad2348e\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"80\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/man-in-stress.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Stress Management\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7e5a5073\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1358b057\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"124\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/psychotherapist-talking-with-patients-of-support-group.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Group Theraphy\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"27236e4c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"structure\":\"20\",\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1537504e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"content_position\":\"bottom\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_position_tablet\":\"initial\",\"background_xpos_tablet\":{\"unit\":\"%\",\"size\":58,\"sizes\":[]},\"background_ypos_tablet\":{\"unit\":\"%\",\"size\":61,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"552737ef\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":335,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"6242bc82\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"hide_mobile\":\"hidden-phone\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"abb3d60\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":39.966999999999999,\"_inline_size_tablet\":60,\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f11a5cc\",\"elType\":\"widget\",\"settings\":{\"ekit_icon_box_header_icons__switch\":\"\",\"ekit_icon_box_header_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_title_text\":\"12 Years Of Experiences\",\"ekit_icon_box_description_text\":\"Lorem ipsum dolor sit amet, consect adipiscing elit, sed do eiusmod tempor incididunt ut labore \",\"ekit_icon_box_enable_btn\":\"yes\",\"ekit_icon_box_btn_text\":\"Make Appointment\",\"ekit_icon_box_icons\":{\"value\":\"icon icon-right-arrow\",\"library\":\"ekiticons\"},\"ekit_icon_box_icon_align\":\"right\",\"ekit_icon_box_text_align_responsive\":\"left\",\"ekit_icon_box_badge_title\":\"EXCLUSIVE\",\"ekit_icon_box_infobox_bg_group_background\":\"classic\",\"ekit_icon_box_infobox_bg_padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"ekit_icon_box_infobox_bg_padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"ekit_icon_box_iocnbox_border_group_border\":\"solid\",\"ekit_icon_box_iocnbox_border_group_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_icon_box_infobox_border_radious\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_title_color_hover\":\"\",\"ekit_icon_description_color_hover\":\"\",\"ekit_icon_box_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_icon_box_btn_background_group_background\":\"classic\",\"ekit_icon_box_btn_background_group_color\":\"#FFFFFF00\",\"__globals__\":{\"ekit_icon_box_infobox_bg_group_color\":\"globals\\/colors?id=50928c2\",\"ekit_icon_title_color\":\"globals\\/colors?id=e5c8540\",\"ekit_icon_title_typography_group_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_icon_description_typography_group_typography\":\"globals\\/typography?id=text\",\"ekit_icon_description_color\":\"globals\\/colors?id=text\",\"ekit_icon_box_button_text_color\":\"globals\\/colors?id=accent\",\"ekit_icon_box_typography_group_typography\":\"globals\\/typography?id=a892a9f\"},\"ekit_icon_box_header_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_water_mark_icons\":{\"value\":\"icon icon-review\",\"library\":\"ekiticons\"},\"ekit_icon_box_infobox_bg_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_group_slideshow_gallery\":[],\"ekit_icon_box_infobox_bg_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_infobox_bg_hover_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_group_slideshow_gallery\":[],\"ekit_icon_box_btn_background_hover_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_btn_background_hover_group_slideshow_gallery\":[],\"ekit_icon_box_show_image\":{\"id\":\"101\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/placeholder.png\"},\"ekit_icon_box_image_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_image_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_slideshow_gallery\":[],\"ekit_icon_box_bg_ovelry_color_hv_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_bg_ovelry_color_hv_slideshow_gallery\":[],\"ekit_icon_box_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_icon_box_badge_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-icon-box\"}],\"isInner\":true},{\"id\":\"2f657bae\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60.033000000000001,\"_inline_size_tablet\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5bdb793f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_size\":\"auto\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.34999999999999998,\"sizes\":[]},\"padding\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_color\":\"#01221F\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"background_overlay_position\":\"initial\",\"background_overlay_xpos\":{\"unit\":\"%\",\"size\":77,\"sizes\":[]},\"background_overlay_ypos\":{\"unit\":\"%\",\"size\":-15,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ad00782\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"align\":\"center\",\"header_size\":\"h5\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76ffcdb3\",\"elType\":\"widget\",\"settings\":{\"title\":\"What Patients Say About Us\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"142fa0aa\",\"elType\":\"widget\",\"settings\":{\"ekit_testimonial_style\":\"style4\",\"ekit_testimonial_rating_enable\":\"\",\"ekit_testimonial_data\":[{\"client_name\":\"Carlos Stein\",\"_id\":\"2f89243\",\"designation\":\"Student\",\"review\":\"vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia\",\"client_photo\":{\"id\":\"92\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/MKLVKTE.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo_active\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"use_hover_logo\":\"\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Aneesa Andrews\",\"_id\":\"f6aef75\",\"designation\":\"Co-Founder HCM\",\"review\":\"vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia\",\"client_photo\":{\"id\":\"108\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/UUFGSJH.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo_active\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"use_hover_logo\":\"\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"},{\"client_name\":\"Carolyn Hood\",\"_id\":\"b10838d\",\"designation\":\"Entrepreneur\",\"review\":\"vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia\",\"client_photo\":{\"id\":\"116\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/CASCKD8.jpg\"},\"client_logo\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"client_logo_active\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"use_hover_logo\":\"\",\"rating\":\"5\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"ekit_testimonial_active\":\"\",\"ekit_testimonial_background_group_background\":\"\",\"ekit_testimonial_background_group_color\":\"\",\"ekit_testimonial_background_group_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_color_b\":\"#f2295b\",\"ekit_testimonial_background_group_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_type\":\"linear\",\"ekit_testimonial_background_group_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"ekit_testimonial_background_group_gradient_position\":\"center center\",\"ekit_testimonial_background_group_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_position\":\"\",\"ekit_testimonial_background_group_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_background_group_attachment\":\"\",\"ekit_testimonial_background_group_repeat\":\"\",\"ekit_testimonial_background_group_size\":\"\",\"ekit_testimonial_background_group_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_testimonial_background_group_video_link\":\"\",\"ekit_testimonial_background_group_video_start\":\"\",\"ekit_testimonial_background_group_video_end\":\"\",\"ekit_testimonial_background_group_play_once\":\"\",\"ekit_testimonial_background_group_play_on_mobile\":\"\",\"ekit_testimonial_background_group_privacy_mode\":\"\",\"ekit_testimonial_background_group_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_background_group_slideshow_gallery\":[],\"ekit_testimonial_background_group_slideshow_loop\":\"yes\",\"ekit_testimonial_background_group_slideshow_slide_duration\":5000,\"ekit_testimonial_background_group_slideshow_slide_transition\":\"fade\",\"ekit_testimonial_background_group_slideshow_transition_duration\":500,\"ekit_testimonial_background_group_slideshow_background_size\":\"\",\"ekit_testimonial_background_group_slideshow_background_position\":\"\",\"ekit_testimonial_background_group_slideshow_lazyload\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns\":\"\",\"ekit_testimonial_background_group_slideshow_ken_burns_zoom_direction\":\"in\"}],\"ekit_testimonial_layout_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_layout_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":0,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_testimonial_section_wraper_horizontal_alignment\":\"center\",\"ekit_testimonial_section_wathermark_typography\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"ekit_testimonial_section_wathermark_margin_bottom\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"ekit_testimonial_client_image_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_testimonial_client_image_box_shadow_box_shadow_type\":\"yes\",\"ekit_testimonial_client_image_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":1,\"blur\":4,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.15)\"},\"ekit_testimonial_client_image_margin_\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_client_image_size\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"__globals__\":{\"ekit_testimonial_description_typography_typography\":\"globals\\/typography?id=5702cc8\",\"ekit_testimonial_description_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_client_name_typography_typography\":\"globals\\/typography?id=01acdab\",\"ekit_testimonial_designation_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"ekit_testimonial_designation_normal_color\":\"globals\\/colors?id=text\",\"ekit_testimonial_section_wathermark_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_client_image_border_color\":\"globals\\/colors?id=accent\",\"ekit_testimonial_layout_border_color\":\"globals\\/colors?id=primary\",\"ekit_testimonial_section_wathermark_icon_badge_background_color\":\"\"},\"ekit_testimonial_speed\":3000,\"ekit_testimonial_client_name_spacing_bottom\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"ekit_testimonial_left_right_spacing_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"ekit_testimonial_slidetoshow_mobile\":1,\"ekit_testimonial_slidesToScroll_mobile\":1,\"ekit_testimonial_layout_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_typography_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"_animation_delay\":100,\"ekit_testimonial_layout_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_background_background\":\"classic\",\"ekit_testimonial_layout_background_color\":\"#FFFFFF00\",\"ekit_testimonial_description_color\":\"#7A7A7A\",\"ekit_testimonial_section_wathermark_icon_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_testimonial_section_wathermark_icon_badge_background_background\":\"classic\",\"ekit_testimonial_section_wathermark_icon_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_testimonial_layout_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_description_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_client_name_normal_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_layout_border_color\":\"#06685F\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_section_wathermark_badge_radius\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":[]},\"ekit_testimonial_section_wathermark_color\":\"#E17141\",\"ekit_testimonial_client_image_border_color\":\"#E17141\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_testimonial_wartermarks\":{\"value\":\"icon icon-quote\",\"library\":\"ekiticons\"},\"ekit_testimonial_left_arrows\":{\"value\":\"icon icon-left-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_right_arrows\":{\"value\":\"icon icon-right-arrow2\",\"library\":\"ekiticons\"},\"ekit_testimonial_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_background_slideshow_gallery\":[],\"ekit_testimonial_layout_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_layout_active_background_slideshow_gallery\":[],\"ekit_testimonial_active_layout_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_active_layout_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_hover_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_hover_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_icon_badge_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_icon_badge_active_background_slideshow_gallery\":[],\"ekit_testimonial_section_wathermark_badge_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_section_wathermark_badge_background_slideshow_gallery\":[],\"ekit_testimonial_client_image_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_image_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_background_slideshow_gallery\":[],\"ekit_testimonial_client_dot_active_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_client_dot_active_background_slideshow_gallery\":[],\"ekit_testimonial_nav_background_normal_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_normal_slideshow_gallery\":[],\"ekit_testimonial_nav_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_testimonial_nav_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1fcbbfe\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"60\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7011f41b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b94de5b\",\"elType\":\"widget\",\"settings\":{\"title\":\"FAQ\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1ec6254\",\"elType\":\"widget\",\"settings\":{\"title\":\"Popular Question\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"59b00fb1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"211df919\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74f24d5d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"43119787\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\" How to Make an Appointment for Group Service?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"6c3aab0\"},{\"acc_title\":\"How Long Will My Treatment Go on For?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"3203035\",\"ekit_acc_is_active\":\"no\"},{\"acc_title\":\"What Payment Methods Are Available? \",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"eb62296\",\"ekit_acc_is_active\":\"\"}],\"ekit_accordion_open_first_slide\":\"\",\"ekit_accordion_left_icons\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"ekit_accordion_left_icon_actives\":{\"value\":\"fas fa-angle-up\",\"library\":\"fa-solid\"},\"ekit_accordion_background_background\":\"classic\",\"ekit_accordion_background_color\":\"#E17141\",\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_open_color\":\"#E7EBF0\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_background_close_color\":\"#FFFFFF\",\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_close_color\":\"#E7EBF0\",\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_accordion_section_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"ekit_accordion_title_color\":\"\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=text\",\"ekit_accordion_icon_color_close\":\"globals\\/colors?id=accent\",\"ekit_accordion_icon_color\":\"\",\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=1660fa3\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_background_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_close_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_accordion_right_icon_actives\":{\"value\":\"icon icon-up-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_title_color\":\"#FFFFFF\",\"ekit_accordion_border_radious_curve_shape_open\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_title_color_close\":\"#06685F\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_box_shadow_close_box_shadow_type\":\"yes\",\"ekit_accordion_box_shadow_close_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_accordion_content_color\":\"#7A7A7A\",\"ekit_accordion_icon_color_close\":\"#E17141\",\"ekit_accordion_icon_color\":\"#FFFFFF\",\"ekit_accordion_right_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_slideshow_gallery\":[],\"ekit_accordion_background_close_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_slideshow_gallery\":[],\"ekit_accordion_content_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_slideshow_gallery\":[],\"ekit_accordion_icon_box_open_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_close_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_slideshow_gallery\":[],\"ekit_accordion_closed_icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true},{\"id\":\"8c419e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5451fa2c\",\"elType\":\"widget\",\"settings\":{\"ekit_accordion_items\":[{\"acc_title\":\" How to Make an Appointment for Group Service?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"ekit_acc_is_active\":\"yes\",\"_id\":\"6c3aab0\"},{\"acc_title\":\"How Long Will My Treatment Go on For?\",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"3203035\",\"ekit_acc_is_active\":\"no\"},{\"acc_title\":\"What Payment Methods Are Available? \",\"acc_content\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud\",\"_id\":\"eb62296\",\"ekit_acc_is_active\":\"\"}],\"ekit_accordion_open_first_slide\":\"\",\"ekit_accordion_left_icons\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"ekit_accordion_left_icon_actives\":{\"value\":\"fas fa-angle-up\",\"library\":\"fa-solid\"},\"ekit_accordion_background_background\":\"classic\",\"ekit_accordion_background_color\":\"#E17141\",\"ekit_accordion_title_border_open_border\":\"solid\",\"ekit_accordion_title_border_open_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_open_color\":\"#E7EBF0\",\"ekit_accordion_background_close_background\":\"classic\",\"ekit_accordion_background_close_color\":\"#FFFFFF\",\"ekit_accordion_title_border_close_border\":\"solid\",\"ekit_accordion_title_border_close_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_accordion_title_border_close_color\":\"#E7EBF0\",\"ekit_accordion_title_padding\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"20\",\"bottom\":\"25\",\"left\":\"20\",\"isLinked\":false},\"ekit_accordion_content_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"20\",\"isLinked\":\"\"},\"ekit_accordion_section_icon_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"ekit_accordion_title_color\":\"\",\"ekit_accordion_title_color_close\":\"globals\\/colors?id=primary\",\"ekit_accordion_content_color\":\"globals\\/colors?id=text\",\"ekit_accordion_icon_color_close\":\"globals\\/colors?id=accent\",\"ekit_accordion_icon_color\":\"\",\"ekit_accordion_title_typography_typography\":\"globals\\/typography?id=1660fa3\",\"ekit_accordion_content_typography_typography\":\"globals\\/typography?id=text\",\"ekit_accordion_background_color\":\"globals\\/colors?id=accent\",\"ekit_accordion_background_close_color\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"ekit_accordion_right_icon_actives\":{\"value\":\"icon icon-up-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_title_color\":\"#FFFFFF\",\"ekit_accordion_border_radious_curve_shape_open\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_title_color_close\":\"#06685F\",\"ekit_accordion_border_radious_close\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_accordion_box_shadow_close_box_shadow_type\":\"yes\",\"ekit_accordion_box_shadow_close_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":10,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"ekit_accordion_content_color\":\"#7A7A7A\",\"ekit_accordion_icon_color_close\":\"#E17141\",\"ekit_accordion_icon_color\":\"#FFFFFF\",\"ekit_accordion_right_icons\":{\"value\":\"icon icon-down-arrow1\",\"library\":\"ekiticons\"},\"ekit_accordion_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_slideshow_gallery\":[],\"ekit_accordion_background_close_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_background_close_slideshow_gallery\":[],\"ekit_accordion_content_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_content_background_slideshow_gallery\":[],\"ekit_accordion_icon_box_open_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_open_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_bg_slideshow_gallery\":[],\"ekit_accordion_icon_box_close_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_icon_box_close_bg_slideshow_gallery\":[],\"ekit_accordion_closed_icon_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_accordion_closed_icon_bg_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-accordion\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(612,138,'_elementor_page_assets','a:1:{s:6:\"styles\";a:9:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";}}'),(613,138,'_wp_page_template','elementor_header_footer'),(614,138,'envato_tk_source_kit','57'),(615,138,'envato_tk_source_index','5'),(616,142,'_elementor_edit_mode','builder'),(617,142,'_elementor_template_type','section'),(618,142,'_elementor_version','3.14.1');
INSERT INTO `wp_postmeta` VALUES (619,142,'_elementor_data','[{\"id\":\"4b0fa7e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c658ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"733e6ce8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"525491c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4de86e07\",\"elType\":\"widget\",\"settings\":{\"title\":\"Finding The Answers To Minding Your Mental Health\\n\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a08e1e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua admi veniam, quis nostrud exercitation ullamco\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"614f649b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#E17141\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"33be62aa\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_glow_color_responsive\":\"#FFFFFF00\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_hover_background_background_color\":\"\",\"st_border_normal_border_border_color\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_button_hover_text_color_responsive\":\"#FFFFFF\",\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FF8F34\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_button_hover_background_background_color\":\"#E17141\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"sg_video_hosted\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_video_hosted_poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"483810c0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"button_text_color\":\"#FFFFFF\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"72ca548c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d8e6736\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33c05900\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"325c0e54\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bc21584\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum \",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"afab028\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57e5cfc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31207fcd\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Quality Services\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_height_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_readmore_button_icon\":{\"value\":\"fas fa-book\",\"library\":\"fa-solid\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"57df28bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f3441c7\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-team-1-line\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Professional Team\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#E17141\",\"st_icon_height_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_readmore_button_icon\":{\"value\":\"fas fa-book\",\"library\":\"fa-solid\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"7c2275a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48dc586e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Dedicated Support\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_height_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_readmore_button_icon\":{\"value\":\"fas fa-book\",\"library\":\"fa-solid\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70e04fdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28648d7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1cce3a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5aa7281a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"72\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"width_tablet\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"223f79b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40cb6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"4e7dea49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5054002a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"title_text\":\"We Are Trusted More Than 2580 Patients\",\"description_text\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7f517b0\"},\"primary_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2d7a754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"584babe4\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412a2b46\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Comprehensive Directory For Your Mental Health\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf5bbe0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9a97a29\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46923124\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#E17141\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"250c784b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuries\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=6f01aa7\"},\"text_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"740da29a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"472be913\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"To assist the individual in recovering from the crisis & problems\",\"_id\":\"1cd10a1\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1c1c889b\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c090806\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79897b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"525aef57\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1770f5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19c42f5c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1323e1f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"520f68b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1da20b3d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"451f9843\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_player_self_hosted\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"self_poster_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_slideshow_gallery\":[],\"ekit_video_popup_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"b4c4f9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f81ce2\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"1525954d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d63b45\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4862ed9a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2cc0807f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d159fb7\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"1707500\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"41677f06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"23d16817\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c0d2dae\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2,\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f4ded3f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5014d35b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42b654c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4987e5af\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d5006b5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a4f74e8\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"67959fb4\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"26043fda\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2ed3ef47\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"4b0c71c4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3540a91f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a69919\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"51573ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3971d4d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"18d6514a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79f742d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8121717\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5494213c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"25e386a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3c8116dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1399cc0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ee5a5de\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b71618\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"25123898\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c58d481\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48e6628b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67ee0f64\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b4c94ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b5adf5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6486c6ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54c7575f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c717fde\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ff48a19\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"62fb2461\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c912a17\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"29a89d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"398e6238\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"157dca6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1cb78e7d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6a3dee2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e3fc82c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c54719a\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_player_self_hosted\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"self_poster_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_slideshow_gallery\":[],\"ekit_video_popup_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d11ef9c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f302ba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63549a01\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6802f7ce\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60648618\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c1438ce\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10db4af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a3102b\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"6fc09f5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b7dd2e0\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"8da063d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ed5432a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1adffa85\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26b87498\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7affab2d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2f32e24a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e04e62c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5fa090b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1eb81b4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d3224ed\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"77a3d39b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57596dae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"726ebd4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"398e2eae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"50d99b0d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"63ab7a89\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f808de0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1cdccd69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c7e7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"188268f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a103ab1\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fd332b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68a45689\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"sg_content_readmore_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_content_comment_icon\":{\"value\":\"fas fa-comment\",\"library\":\"fa-solid\"},\"sg_content_meta_author_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"sg_content_meta_date_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"pagination_prev_icon\":{\"value\":\"jki jki-angle-left-solid\",\"library\":\"jkiticon\"},\"pagination_next_icon\":{\"value\":\"jki jki-angle-right-solid\",\"library\":\"jkiticon\"},\"pagination_icon\":{\"value\":\"\",\"library\":\"\"},\"st_wrapper_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_slideshow_gallery\":[],\"st_post_item_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_slideshow_gallery\":[],\"st_thumbnail_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_slideshow_gallery\":[],\"st_thumbnail_background_overlay_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_slideshow_gallery\":[],\"st_thumbnail_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_slideshow_gallery\":[],\"st_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_slideshow_gallery\":[],\"st_category_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_slideshow_gallery\":[],\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_readmore_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_slideshow_gallery\":[],\"st_readmore_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_slideshow_gallery\":[],\"st_preload_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_slideshow_gallery\":[],\"st_preload_dot_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_dot_background_background_slideshow_gallery\":[],\"st_pagination_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_slideshow_gallery\":[],\"st_pagination_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_slideshow_gallery\":[],\"st_pagination_disabled_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_slideshow_gallery\":[],\"st_nocontent_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(620,143,'_elementor_edit_mode','builder'),(621,143,'_elementor_template_type','section'),(622,143,'_elementor_version','3.14.1'),(623,143,'_elementor_data','[{\"id\":\"4b0fa7e4\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c658ff9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"733e6ce8\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"525491c0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4de86e07\",\"elType\":\"widget\",\"settings\":{\"title\":\"Finding The Answers To Minding Your Mental Health\\n\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7a08e1e5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua admi veniam, quis nostrud exercitation ullamco\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"614f649b\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#E17141\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"33be62aa\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_glow_color_responsive\":\"#FFFFFF00\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_hover_background_background_color\":\"\",\"st_border_normal_border_border_color\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_button_hover_text_color_responsive\":\"#FFFFFF\",\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FF8F34\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_button_hover_background_background_color\":\"#E17141\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"sg_video_hosted\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_video_hosted_poster\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"483810c0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"button_text_color\":\"#FFFFFF\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"72ca548c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d8e6736\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33c05900\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"325c0e54\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1bc21584\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum \",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"afab028\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57e5cfc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"31207fcd\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Quality Services\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_height_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_readmore_button_icon\":{\"value\":\"fas fa-book\",\"library\":\"fa-solid\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"57df28bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3f3441c7\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-team-1-line\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Professional Team\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#E17141\",\"st_icon_height_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_readmore_button_icon\":{\"value\":\"fas fa-book\",\"library\":\"fa-solid\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"7c2275a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48dc586e\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Dedicated Support\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_height_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"sg_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_readmore_button_icon\":{\"value\":\"fas fa-book\",\"library\":\"fa-solid\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"70e04fdd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28648d7b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1cce3a13\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5aa7281a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"72\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"width_tablet\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"223f79b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"40cb6bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"4e7dea49\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5054002a\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"title_text\":\"We Are Trusted More Than 2580 Patients\",\"description_text\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7f517b0\"},\"primary_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2d7a754\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"584babe4\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"412a2b46\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Comprehensive Directory For Your Mental Health\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4bf5bbe0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9a97a29\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46923124\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#E17141\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"250c784b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuries\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=6f01aa7\"},\"text_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"740da29a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"472be913\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"To assist the individual in recovering from the crisis & problems\",\"_id\":\"1cd10a1\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"1c1c889b\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c090806\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79897b04\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"525aef57\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1770f5e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"19c42f5c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1323e1f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"520f68b1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1da20b3d\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"451f9843\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_player_self_hosted\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"self_poster_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_slideshow_gallery\":[],\"ekit_video_popup_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"b4c4f9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f81ce2\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"1525954d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d63b45\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"4862ed9a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2cc0807f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4d159fb7\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"1707500\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"41677f06\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"23d16817\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c0d2dae\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2,\"sg_setting_hover_watermark_icon\":{\"value\":\"far fa-map\",\"library\":\"fa-regular\"},\"st_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_background_background_slideshow_gallery\":[],\"st_container_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_container_hover_background_background_slideshow_gallery\":[],\"st_icon_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_gradient_background_slideshow_gallery\":[],\"st_icon_hover_gradient_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_icon_hover_gradient_background_slideshow_gallery\":[],\"st_button_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_normal_background_background_slideshow_gallery\":[],\"st_button_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_button_hover_background_background_slideshow_gallery\":[],\"st_background_overlay_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_color_background_slideshow_gallery\":[],\"st_background_overlay_hover_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_background_overlay_hover_color_background_slideshow_gallery\":[],\"st_badge_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_badge_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f4ded3f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5014d35b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42b654c5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4987e5af\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d5006b5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a4f74e8\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"67959fb4\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"26043fda\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2ed3ef47\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"sg_progress_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"st_bar_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_bar_background_background_slideshow_gallery\":[],\"st_track_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_background_background_slideshow_gallery\":[],\"st_track_switch_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_track_switch_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"4b0c71c4\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3540a91f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a69919\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"51573ae0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3971d4d\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\",\"selected_icon\":{\"value\":\"fas fa-check\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"18d6514a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"79f742d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8121717\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5494213c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true},{\"id\":\"25e386a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3c8116dd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1399cc0\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ee5a5de\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\",\"link\":{\"url\":\"\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"59b71618\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"25123898\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c58d481\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48e6628b\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67ee0f64\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b4c94ab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b5adf5f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6486c6ff\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"54c7575f\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c717fde\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ff48a19\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"62fb2461\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c912a17\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"29a89d68\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"398e6238\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"157dca6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1cb78e7d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\",\"ekit_funfact_bg_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_bg_slideshow_gallery\":[],\"ekit_funfact_divider_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_divider_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"6a3dee2\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e3fc82c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7c54719a\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_player_self_hosted\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"self_poster_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_color_slideshow_gallery\":[],\"ekit_video_popup_btn_bg_hover_color_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_video_popup_btn_bg_hover_color_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d11ef9c\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f302ba0\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63549a01\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6802f7ce\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60648618\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3c1438ce\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10db4af4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a3102b\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"6fc09f5b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6b7dd2e0\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"8da063d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160,\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3ed5432a\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\",\"sg_social_normal_color\":\"\",\"sg_social_normal_background_background_background\":\"\",\"sg_social_normal_background_background_color\":\"\",\"sg_social_normal_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_color_b\":\"#f2295b\",\"sg_social_normal_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_gradient_type\":\"linear\",\"sg_social_normal_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_normal_background_background_gradient_position\":\"center center\",\"sg_social_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_position\":\"\",\"sg_social_normal_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_normal_background_background_attachment\":\"\",\"sg_social_normal_background_background_repeat\":\"\",\"sg_social_normal_background_background_size\":\"\",\"sg_social_normal_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_normal_background_background_video_link\":\"\",\"sg_social_normal_background_background_video_start\":\"\",\"sg_social_normal_background_background_video_end\":\"\",\"sg_social_normal_background_background_play_once\":\"\",\"sg_social_normal_background_background_play_on_mobile\":\"\",\"sg_social_normal_background_background_privacy_mode\":\"\",\"sg_social_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_normal_background_background_slideshow_gallery\":[],\"sg_social_normal_background_background_slideshow_loop\":\"yes\",\"sg_social_normal_background_background_slideshow_slide_duration\":5000,\"sg_social_normal_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_normal_background_background_slideshow_transition_duration\":500,\"sg_social_normal_background_background_slideshow_background_size\":\"\",\"sg_social_normal_background_background_slideshow_background_position\":\"\",\"sg_social_normal_background_background_slideshow_lazyload\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns\":\"\",\"sg_social_normal_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_normal_border_border_border\":\"\",\"sg_social_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_normal_border_border_color\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_normal_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_normal_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_normal_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_normal_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"},\"sg_social_hover_color\":\"\",\"sg_social_hover_background_background_background\":\"\",\"sg_social_hover_background_background_color\":\"\",\"sg_social_hover_background_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_color_b\":\"#f2295b\",\"sg_social_hover_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_gradient_type\":\"linear\",\"sg_social_hover_background_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"sg_social_hover_background_background_gradient_position\":\"center center\",\"sg_social_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_position\":\"\",\"sg_social_hover_background_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"sg_social_hover_background_background_attachment\":\"\",\"sg_social_hover_background_background_repeat\":\"\",\"sg_social_hover_background_background_size\":\"\",\"sg_social_hover_background_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"sg_social_hover_background_background_video_link\":\"\",\"sg_social_hover_background_background_video_start\":\"\",\"sg_social_hover_background_background_video_end\":\"\",\"sg_social_hover_background_background_play_once\":\"\",\"sg_social_hover_background_background_play_on_mobile\":\"\",\"sg_social_hover_background_background_privacy_mode\":\"\",\"sg_social_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"sg_social_hover_background_background_slideshow_gallery\":[],\"sg_social_hover_background_background_slideshow_loop\":\"yes\",\"sg_social_hover_background_background_slideshow_slide_duration\":5000,\"sg_social_hover_background_background_slideshow_slide_transition\":\"fade\",\"sg_social_hover_background_background_slideshow_transition_duration\":500,\"sg_social_hover_background_background_slideshow_background_size\":\"\",\"sg_social_hover_background_background_slideshow_background_position\":\"\",\"sg_social_hover_background_background_slideshow_lazyload\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns\":\"\",\"sg_social_hover_background_background_slideshow_ken_burns_zoom_direction\":\"in\",\"sg_social_hover_border_border_border\":\"\",\"sg_social_hover_border_border_width\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"sg_social_hover_border_border_color\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow_type\":\"\",\"sg_social_hover_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"sg_social_hover_boxshadow_box_shadow_box_shadow_position\":\" \",\"sg_social_hover_textshadow_text_shadow_text_shadow_type\":\"\",\"sg_social_hover_textshadow_text_shadow_text_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"color\":\"rgba(0,0,0,0.3)\"}}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\",\"sg_popup_close_icon\":{\"value\":\"fas fa-times\",\"library\":\"fa-solid\"},\"st_content_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_normal_background_background_slideshow_gallery\":[],\"st_content_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_hover_background_background_slideshow_gallery\":[],\"st_image_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_background_background_slideshow_gallery\":[],\"st_image_overlay_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_image_overlay_background_background_slideshow_gallery\":[],\"st_control_modal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_control_modal_background_background_slideshow_gallery\":[],\"st_close_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_normal_background_background_slideshow_gallery\":[],\"st_close_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_close_hover_background_background_slideshow_gallery\":[],\"st_hover_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_hover_content_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1adffa85\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"26b87498\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7affab2d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2f32e24a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"e04e62c\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"5fa090b8\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"1eb81b4d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2d3224ed\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_separator_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_title_border_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_border_color_background_slideshow_gallery\":[],\"st_focused_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_background_background_slideshow_gallery\":[],\"st_focused_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_focused_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_gradient_color_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_gradient_color_background_slideshow_gallery\":[],\"st_subtitle_border_left_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_left_background_background_slideshow_gallery\":[],\"st_subtitle_border_right_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_subtitle_border_right_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"77a3d39b\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"57596dae\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"726ebd4b\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"398e2eae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"50d99b0d\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"button_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"button_background_hover_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"63ab7a89\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6f808de0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1cdccd69\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7c7e7a7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"188268f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\",\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1a103ab1\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fd332b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68a45689\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"sg_content_readmore_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_content_comment_icon\":{\"value\":\"fas fa-comment\",\"library\":\"fa-solid\"},\"sg_content_meta_author_icon\":{\"value\":\"fas fa-user\",\"library\":\"fa-solid\"},\"sg_content_meta_date_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"pagination_prev_icon\":{\"value\":\"jki jki-angle-left-solid\",\"library\":\"jkiticon\"},\"pagination_next_icon\":{\"value\":\"jki jki-angle-right-solid\",\"library\":\"jkiticon\"},\"pagination_icon\":{\"value\":\"\",\"library\":\"\"},\"st_wrapper_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_wrapper_background_background_slideshow_gallery\":[],\"st_post_item_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_post_item_background_background_slideshow_gallery\":[],\"st_thumbnail_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_background_slideshow_gallery\":[],\"st_thumbnail_background_overlay_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_background_overlay_background_slideshow_gallery\":[],\"st_thumbnail_container_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_thumbnail_container_background_background_slideshow_gallery\":[],\"st_content_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_content_background_background_slideshow_gallery\":[],\"st_category_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_category_background_background_slideshow_gallery\":[],\"st_title_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_title_background_background_slideshow_gallery\":[],\"st_readmore_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_normal_background_background_slideshow_gallery\":[],\"st_readmore_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_readmore_hover_background_background_slideshow_gallery\":[],\"st_preload_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_background_background_slideshow_gallery\":[],\"st_preload_dot_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_preload_dot_background_background_slideshow_gallery\":[],\"st_pagination_normal_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_normal_background_background_slideshow_gallery\":[],\"st_pagination_hover_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_hover_background_background_slideshow_gallery\":[],\"st_pagination_disabled_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_pagination_disabled_background_background_slideshow_gallery\":[],\"st_nocontent_background_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"st_nocontent_background_background_slideshow_gallery\":[],\"_background_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"_background_hover_slideshow_gallery\":[],\"_mask_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"}},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(624,142,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(625,142,'_wp_page_template','elementor_header_footer'),(626,142,'envato_tk_source_kit','57'),(627,142,'envato_tk_source_index','1'),(706,156,'_edit_lock','1689744816:1'),(707,156,'_wp_page_template','elementor_header_footer'),(708,156,'_elementor_edit_mode','builder'),(709,156,'_elementor_template_type','wp-page'),(710,156,'_elementor_version','3.14.1'),(713,117,'ekit_post_views_count','11'),(715,142,'ekit_post_views_count','1'),(719,11,'ekit_post_views_count','1'),(726,159,'_wp_page_template','elementor_header_footer'),(727,159,'_elementor_edit_mode','builder'),(728,159,'_elementor_template_type','wp-page'),(729,159,'_elementor_version','3.14.1'),(730,160,'_wp_page_template','elementor_header_footer'),(731,160,'_elementor_edit_mode','builder'),(732,160,'_elementor_template_type','wp-page'),(733,160,'_elementor_version','3.14.1'),(734,156,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\",\"link\":{\"url\":\"#form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_element_id\":\"form\"},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\",\"link\":{\"url\":\"#form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Digital Marketing Services, A Brand Requires\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ceddb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"619f310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"bbee800\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Website Design\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-internet\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#000000\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"6ba80f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"3c608f1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Social Media Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/social-media.svg\",\"id\":253},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#DD697E\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"dca7c04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"372ec13\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Search Engine Optimization\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/seo.svg\",\"id\":252},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"53bef75\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"c44bfaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"60c235e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Paid Media Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/paid-content.svg\",\"id\":251},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"bb608e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"94d36c9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":249,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/influencer.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Influencer Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"3f81e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"a2ffcc1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":250,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/reputation-management.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Online Reputation Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Upliftment Of Your Brand\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bring to us what troubles you and let us find the solution for you.<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"link\":{\"url\":\"#form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(735,161,'_wp_page_template','elementor_header_footer'),(736,161,'_elementor_edit_mode','builder'),(737,161,'_elementor_template_type','wp-page'),(738,161,'_elementor_version','3.14.1');
INSERT INTO `wp_postmeta` VALUES (739,161,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#E17141\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"248ca724\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_glow_color_responsive\":\"#FFFFFF00\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_hover_background_background_color\":\"\",\"st_border_normal_border_border_color\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_button_hover_text_color_responsive\":\"#FFFFFF\",\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FF8F34\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_button_hover_background_background_color\":\"#E17141\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"a904b6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum \",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Quality Services\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-team-1-line\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Professional Team\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#E17141\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Dedicated Support\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37fdca36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"72\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"width_tablet\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"33090dbf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66d13f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3a4c1c73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"25b3d85f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"title_text\":\"We Are Trusted More Than 2580 Patients\",\"description_text\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7f517b0\"},\"primary_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Comprehensive Directory For Your Mental Health\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40173d9c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18b82629\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#E17141\"},\"elements\":[{\"id\":\"526d668b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuries\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=6f01aa7\"},\"text_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ae09e01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"},{\"text\":\"To assist the individual in recovering from the crisis & problems\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef637da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60bbd647\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4656b7fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"4d1dc59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4de4fa51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22e38b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6fc2808b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"39cdbbc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2235dad0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"6c7d9811\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"7fa3a2c8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"3bf4e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18827a26\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"638477cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"26d3b5be\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"78f9ca1e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6da6b49d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bf147f4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(740,156,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(742,162,'_menu_item_type','post_type'),(743,162,'_menu_item_menu_item_parent','0'),(744,162,'_menu_item_object_id','156'),(745,162,'_menu_item_object','page'),(746,162,'_menu_item_target',''),(747,162,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(748,162,'_menu_item_xfn',''),(749,162,'_menu_item_url',''),(758,164,'_wp_page_template','elementor_header_footer'),(759,164,'_elementor_edit_mode','builder'),(760,164,'_elementor_template_type','wp-page'),(761,164,'_elementor_version','3.14.1'),(762,164,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#E17141\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"248ca724\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_glow_color_responsive\":\"#FFFFFF00\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_hover_background_background_color\":\"\",\"st_border_normal_border_border_color\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_button_hover_text_color_responsive\":\"#FFFFFF\",\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FF8F34\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_button_hover_background_background_color\":\"#E17141\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"a904b6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum \",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Quality Services\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-team-1-line\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Professional Team\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#E17141\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Dedicated Support\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37fdca36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"72\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"width_tablet\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"33090dbf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66d13f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3a4c1c73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"25b3d85f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"title_text\":\"We Are Trusted More Than 2580 Patients\",\"description_text\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7f517b0\"},\"primary_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Comprehensive Directory For Your Mental Health\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40173d9c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18b82629\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#E17141\"},\"elements\":[{\"id\":\"526d668b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuries\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=6f01aa7\"},\"text_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ae09e01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"},{\"text\":\"To assist the individual in recovering from the crisis & problems\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef637da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60bbd647\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4656b7fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"4d1dc59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4de4fa51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22e38b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6fc2808b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"39cdbbc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2235dad0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"6c7d9811\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"7fa3a2c8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"3bf4e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18827a26\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"638477cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"26d3b5be\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"78f9ca1e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6da6b49d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bf147f4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(763,164,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(764,165,'_wp_page_template','elementor_header_footer'),(765,165,'_elementor_edit_mode','builder'),(766,165,'_elementor_template_type','wp-page'),(767,165,'_elementor_version','3.14.1'),(768,165,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#E17141\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"248ca724\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_glow_color_responsive\":\"#FFFFFF00\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_hover_background_background_color\":\"\",\"st_border_normal_border_border_color\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_button_hover_text_color_responsive\":\"#FFFFFF\",\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FF8F34\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_button_hover_background_background_color\":\"#E17141\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"a904b6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum \",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Quality Services\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-team-1-line\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Professional Team\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#E17141\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Dedicated Support\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37fdca36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"72\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"width_tablet\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"33090dbf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66d13f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3a4c1c73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"25b3d85f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"title_text\":\"We Are Trusted More Than 2580 Patients\",\"description_text\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7f517b0\"},\"primary_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Comprehensive Directory For Your Mental Health\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40173d9c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18b82629\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#E17141\"},\"elements\":[{\"id\":\"526d668b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuries\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=6f01aa7\"},\"text_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ae09e01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"},{\"text\":\"To assist the individual in recovering from the crisis & problems\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef637da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60bbd647\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4656b7fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"4d1dc59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4de4fa51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22e38b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6fc2808b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"39cdbbc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2235dad0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"6c7d9811\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"7fa3a2c8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"3bf4e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18827a26\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"638477cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"26d3b5be\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"78f9ca1e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6da6b49d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bf147f4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(769,165,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(770,166,'_wp_page_template','elementor_header_footer'),(771,166,'_elementor_edit_mode','builder'),(772,166,'_elementor_template_type','wp-page'),(773,166,'_elementor_version','3.14.1'),(774,166,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#E17141\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"248ca724\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_glow_color_responsive\":\"#FFFFFF00\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_hover_background_background_color\":\"\",\"st_border_normal_border_border_color\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_button_hover_text_color_responsive\":\"#FFFFFF\",\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FF8F34\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_button_hover_background_background_color\":\"#E17141\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"a904b6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum \",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#E17141\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37fdca36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"72\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"width_tablet\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"33090dbf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66d13f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3a4c1c73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"25b3d85f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"title_text\":\"We Are Trusted More Than 2580 Patients\",\"description_text\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7f517b0\"},\"primary_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Comprehensive Directory For Your Mental Health\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40173d9c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18b82629\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#E17141\"},\"elements\":[{\"id\":\"526d668b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuries\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=6f01aa7\"},\"text_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ae09e01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"},{\"text\":\"To assist the individual in recovering from the crisis & problems\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef637da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60bbd647\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4656b7fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"4d1dc59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4de4fa51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22e38b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6fc2808b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"39cdbbc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2235dad0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"6c7d9811\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"7fa3a2c8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"3bf4e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18827a26\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"638477cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"26d3b5be\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"78f9ca1e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6da6b49d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bf147f4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(775,166,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(776,58,'_edit_lock','1689759097:1'),(841,176,'_wp_page_template','elementor_header_footer'),(842,176,'_elementor_edit_mode','builder'),(843,176,'_elementor_template_type','wp-page'),(844,176,'_elementor_version','3.14.1'),(845,176,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#E17141\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"248ca724\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_glow_color_responsive\":\"#FFFFFF00\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_hover_background_background_color\":\"\",\"st_border_normal_border_border_color\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_button_hover_text_color_responsive\":\"#FFFFFF\",\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FF8F34\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_button_hover_background_background_color\":\"#E17141\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"a904b6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum \",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#E17141\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37fdca36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"72\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"width_tablet\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"33090dbf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66d13f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3a4c1c73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"25b3d85f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"title_text\":\"We Are Trusted More Than 2580 Patients\",\"description_text\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7f517b0\"},\"primary_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Comprehensive Directory For Your Mental Health\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40173d9c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18b82629\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#E17141\"},\"elements\":[{\"id\":\"526d668b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuries\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=6f01aa7\"},\"text_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ae09e01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"},{\"text\":\"To assist the individual in recovering from the crisis & problems\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef637da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60bbd647\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4656b7fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"4d1dc59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4de4fa51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22e38b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6fc2808b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"39cdbbc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2235dad0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"6c7d9811\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"7fa3a2c8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"3bf4e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18827a26\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"638477cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"26d3b5be\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"78f9ca1e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6da6b49d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bf147f4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(846,176,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(848,177,'_wp_page_template','elementor_header_footer'),(849,177,'_elementor_edit_mode','builder'),(850,177,'_elementor_template_type','wp-page'),(851,177,'_elementor_version','3.14.1');
INSERT INTO `wp_postmeta` VALUES (852,177,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#E17141\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"248ca724\",\"elType\":\"widget\",\"settings\":{\"sg_video_button_title\":\"Play Video\",\"sg_video_button_icon\":{\"value\":\"jki jki-play-button-light\",\"library\":\"jkiticon\"},\"sg_video_url\":\"https:\\/\\/www.youtube.com\\/watch?v=MLpWrANjFbI\",\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_width_responsive\":{\"unit\":\"px\",\"size\":56,\"sizes\":[]},\"st_button_line_height_responsive\":{\"unit\":\"px\",\"size\":58,\"sizes\":[]},\"st_button_normal_glow_color_responsive\":\"#FFFFFF00\",\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF\",\"st_button_hover_background_background_background\":\"classic\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"_element_width\":\"auto\",\"__globals__\":{\"st_button_normal_background_background_color\":\"\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_hover_background_background_color\":\"\",\"st_border_normal_border_border_color\":\"\"},\"st_button_icon_size_responsive_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_button_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_button_height_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_width_responsive_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"st_button_line_height_responsive_mobile\":{\"unit\":\"px\",\"size\":54,\"sizes\":[]},\"st_button_hover_text_color_responsive\":\"#FFFFFF\",\"st_border_normal_border_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"st_border_normal_border_border_color\":\"#FF8F34\",\"st_button_line_height_responsive_tablet\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_button_hover_background_background_color\":\"#E17141\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_video_button\"},{\"id\":\"a904b6c\",\"elType\":\"widget\",\"settings\":{\"text\":\"Watch Intro\",\"align\":\"right\",\"background_color\":\"#FD9E0100\",\"border_radius\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"\",\"button_text_color\":\"\",\"hover_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_element_width\":\"auto\",\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"_animation_delay\":10,\"button_text_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum \",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#E17141\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#E17141\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37fdca36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"72\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"width_tablet\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"33090dbf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66d13f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3a4c1c73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"25b3d85f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"title_text\":\"We Are Trusted More Than 2580 Patients\",\"description_text\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7f517b0\"},\"primary_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Comprehensive Directory For Your Mental Health\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40173d9c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18b82629\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#E17141\"},\"elements\":[{\"id\":\"526d668b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuries\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=6f01aa7\"},\"text_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ae09e01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"},{\"text\":\"To assist the individual in recovering from the crisis & problems\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef637da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60bbd647\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4656b7fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"4d1dc59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4de4fa51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22e38b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6fc2808b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"39cdbbc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2235dad0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"6c7d9811\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"7fa3a2c8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"3bf4e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18827a26\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"638477cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"26d3b5be\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"78f9ca1e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6da6b49d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bf147f4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#E17141\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(853,177,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(855,178,'_wp_page_template','elementor_header_footer'),(856,178,'_elementor_edit_mode','builder'),(857,178,'_elementor_template_type','wp-page'),(858,178,'_elementor_version','3.14.1'),(859,178,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum \",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37fdca36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"72\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"width_tablet\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"33090dbf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66d13f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3a4c1c73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"25b3d85f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"title_text\":\"We Are Trusted More Than 2580 Patients\",\"description_text\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7f517b0\"},\"primary_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Comprehensive Directory For Your Mental Health\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40173d9c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18b82629\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#E17141\"},\"elements\":[{\"id\":\"526d668b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuries\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=6f01aa7\"},\"text_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ae09e01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"},{\"text\":\"To assist the individual in recovering from the crisis & problems\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef637da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60bbd647\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4656b7fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"4d1dc59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4de4fa51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22e38b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6fc2808b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"39cdbbc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2235dad0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"6c7d9811\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"7fa3a2c8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"3bf4e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18827a26\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"638477cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"26d3b5be\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"78f9ca1e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6da6b49d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bf147f4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(860,178,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(872,180,'_wp_attached_file','2023/07/Vesak-Day.gif'),(873,180,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:21:\"2023/07/Vesak-Day.gif\";s:8:\"filesize\";i:71716;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"Vesak-Day-300x300.gif\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:14462;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"Vesak-Day-1024x1024.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:178156;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Vesak-Day-150x150.gif\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:4871;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"Vesak-Day-768x768.gif\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/gif\";s:8:\"filesize\";i:83004;}}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:{}}}'),(874,181,'_wp_attached_file','2023/07/Vesak-Day-1.webp'),(875,181,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:24:\"2023/07/Vesak-Day-1.webp\";s:8:\"filesize\";i:23420;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"Vesak-Day-1-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8588;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"Vesak-Day-1-1024x1024.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:39394;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"Vesak-Day-1-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3624;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:24:\"Vesak-Day-1-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27922;}}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:{}}}'),(876,182,'_wp_page_template','elementor_header_footer'),(877,182,'_elementor_edit_mode','builder'),(878,182,'_elementor_template_type','wp-page'),(879,182,'_elementor_version','3.14.1'),(880,182,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum \",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37fdca36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"72\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"width_tablet\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"33090dbf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66d13f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3a4c1c73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"25b3d85f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"title_text\":\"We Are Trusted More Than 2580 Patients\",\"description_text\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7f517b0\"},\"primary_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Comprehensive Directory For Your Mental Health\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40173d9c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18b82629\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#E17141\"},\"elements\":[{\"id\":\"526d668b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuries\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=6f01aa7\"},\"text_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ae09e01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"},{\"text\":\"To assist the individual in recovering from the crisis & problems\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef637da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60bbd647\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4656b7fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"4d1dc59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4de4fa51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22e38b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6fc2808b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"39cdbbc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2235dad0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"6c7d9811\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"7fa3a2c8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"3bf4e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18827a26\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"638477cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"26d3b5be\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"78f9ca1e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6da6b49d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bf147f4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(881,182,'_elementor_page_assets','a:1:{s:6:\"styles\";a:31:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";}}'),(882,183,'_wp_page_template','elementor_header_footer'),(883,183,'_elementor_edit_mode','builder'),(884,183,'_elementor_template_type','wp-page'),(885,183,'_elementor_version','3.14.1'),(886,183,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum \",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37fdca36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"72\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"width_tablet\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"33090dbf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66d13f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3a4c1c73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"25b3d85f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"title_text\":\"We Are Trusted More Than 2580 Patients\",\"description_text\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7f517b0\"},\"primary_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"A Comprehensive Directory For Your Mental Health\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"40173d9c\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"18b82629\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"4\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"border_color\":\"#E17141\"},\"elements\":[{\"id\":\"526d668b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"We provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuries\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\",\"typography_typography\":\"globals\\/typography?id=6f01aa7\"},\"text_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3ae09e01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud \",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"},{\"text\":\"To assist the individual in recovering from the crisis & problems\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef637da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60bbd647\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4656b7fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"4d1dc59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4de4fa51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22e38b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6fc2808b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"39cdbbc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2235dad0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"6c7d9811\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"7fa3a2c8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"3bf4e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18827a26\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"638477cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"26d3b5be\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"78f9ca1e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6da6b49d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bf147f4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(887,183,'_elementor_page_assets','a:1:{s:6:\"styles\";a:31:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";}}'),(888,184,'_wp_page_template','elementor_header_footer'),(889,184,'_elementor_edit_mode','builder'),(890,184,'_elementor_template_type','wp-page'),(891,184,'_elementor_version','3.14.1'),(892,184,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37fdca36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"72\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"width_tablet\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"33090dbf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66d13f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3a4c1c73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"25b3d85f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"title_text\":\"We Are Trusted More Than 2580 Patients\",\"description_text\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7f517b0\"},\"primary_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef637da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60bbd647\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4656b7fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"4d1dc59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4de4fa51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22e38b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6fc2808b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"39cdbbc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2235dad0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"6c7d9811\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"7fa3a2c8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"3bf4e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18827a26\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"638477cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"26d3b5be\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"78f9ca1e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6da6b49d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bf147f4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(893,184,'_elementor_page_assets','a:1:{s:6:\"styles\";a:31:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";}}'),(900,186,'_wp_attached_file','2023/07/Vesak-Day.webp'),(901,186,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:22:\"2023/07/Vesak-Day.webp\";s:8:\"filesize\";i:41250;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"Vesak-Day-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11102;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"Vesak-Day-1024x1024.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:55334;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Vesak-Day-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4484;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"Vesak-Day-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:38194;}}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:{}}}'),(902,187,'_wp_attached_file','2023/07/About-Us.webp'),(903,187,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:810;s:6:\"height\";i:810;s:4:\"file\";s:21:\"2023/07/About-Us.webp\";s:8:\"filesize\";i:25920;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"About-Us-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10960;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"About-Us-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4424;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:21:\"About-Us-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:37284;}}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:{}}}'),(904,187,'_wp_attachment_image_alt','About Us'),(905,188,'_wp_page_template','elementor_header_footer'),(906,188,'_elementor_edit_mode','builder'),(907,188,'_elementor_template_type','wp-page'),(908,188,'_elementor_version','3.14.1');
INSERT INTO `wp_postmeta` VALUES (909,188,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37fdca36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"72\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"width_tablet\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"33090dbf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66d13f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3a4c1c73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"25b3d85f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"title_text\":\"We Are Trusted More Than 2580 Patients\",\"description_text\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7f517b0\"},\"primary_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef637da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60bbd647\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4656b7fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"4d1dc59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4de4fa51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22e38b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6fc2808b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"39cdbbc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2235dad0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"6c7d9811\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"7fa3a2c8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"3bf4e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18827a26\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"638477cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"26d3b5be\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"78f9ca1e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6da6b49d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bf147f4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(910,188,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(911,189,'_wp_page_template','elementor_header_footer'),(912,189,'_elementor_edit_mode','builder'),(913,189,'_elementor_template_type','wp-page'),(914,189,'_elementor_version','3.14.1'),(915,189,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"66\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/counsel-of-students.jpg\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"37fdca36\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"72\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"%\",\"top\":\"-25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"image_border_color\":\"#FFFFFF\",\"width_tablet\":{\"unit\":\"%\",\"size\":52,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"33090dbf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"%\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"%\",\"top\":\"-40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"66d13f64\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[],\"isInner\":true},{\"id\":\"3a4c1c73\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"25b3d85f\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"jki jki-brain-light\",\"library\":\"jkiticon\"},\"title_text\":\"We Are Trusted More Than 2580 Patients\",\"description_text\":\"\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=7f517b0\"},\"primary_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"globals\\/colors?id=accent\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef637da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60bbd647\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4656b7fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"4d1dc59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4de4fa51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22e38b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6fc2808b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"39cdbbc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2235dad0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"6c7d9811\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"7fa3a2c8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"3bf4e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18827a26\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"638477cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"26d3b5be\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"78f9ca1e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6da6b49d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bf147f4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(916,189,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(917,190,'_wp_page_template','elementor_header_footer'),(918,190,'_elementor_edit_mode','builder'),(919,190,'_elementor_template_type','wp-page'),(920,190,'_elementor_version','3.14.1'),(921,190,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef637da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60bbd647\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4656b7fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"4d1dc59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4de4fa51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22e38b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6fc2808b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"39cdbbc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2235dad0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"6c7d9811\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"7fa3a2c8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"3bf4e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18827a26\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"638477cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"26d3b5be\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"78f9ca1e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6da6b49d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bf147f4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(922,190,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(929,192,'_wp_attached_file','2023/07/Facts-about-healthcare-sector.webp'),(930,192,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:810;s:6:\"height\";i:810;s:4:\"file\";s:42:\"2023/07/Facts-about-healthcare-sector.webp\";s:8:\"filesize\";i:15532;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Facts-about-healthcare-sector-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7496;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Facts-about-healthcare-sector-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2924;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Facts-about-healthcare-sector-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25080;}}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:{}}}'),(931,192,'_wp_attachment_image_alt',''),(932,193,'_wp_page_template','elementor_header_footer'),(933,193,'_elementor_edit_mode','builder'),(934,193,'_elementor_template_type','wp-page'),(935,193,'_elementor_version','3.14.1'),(936,193,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef637da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60bbd647\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4656b7fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"4d1dc59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4de4fa51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22e38b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6fc2808b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"39cdbbc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2235dad0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"6c7d9811\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"7fa3a2c8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"3bf4e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18827a26\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"638477cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"26d3b5be\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"78f9ca1e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6da6b49d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bf147f4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(937,193,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(938,194,'_wp_page_template','elementor_header_footer'),(939,194,'_elementor_edit_mode','builder'),(940,194,'_elementor_template_type','wp-page'),(941,194,'_elementor_version','3.14.1'),(942,194,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ef637da\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"60bbd647\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4656b7fb\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"4d1dc59f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"4de4fa51\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22e38b3f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6fc2808b\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"39cdbbc1\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"2235dad0\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"6c7d9811\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"7fa3a2c8\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"3bf4e07f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18827a26\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Psychologists\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"638477cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"26d3b5be\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-brain\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Cases\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#E17141\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"78f9ca1e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6da6b49d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_image\":{\"id\":\"86\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.20000000000000001,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_mobile\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6bf147f4\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":84,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"globals\\/colors?id=accent\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_popup_btn_bg_hover_color_color\":\"#61CE70\",\"ekit_video_popup_btn_width\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_popup_btn_height\":{\"unit\":\"px\",\"size\":80,\"sizes\":[]},\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(943,194,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(944,195,'_wp_page_template','elementor_header_footer'),(945,195,'_elementor_edit_mode','builder'),(946,195,'_elementor_template_type','wp-page'),(947,195,'_elementor_version','3.14.1');
INSERT INTO `wp_postmeta` VALUES (948,195,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84ec054\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"357cae1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fb6aec9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"29a97fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"af8adcf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee7244d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce5f491\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"8ce31b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"b071a9e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"d14a73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"08a704d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"4c67352\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fd98977\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"jki jki-file-2-light\",\"library\":\"jkiticon\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"bad6241\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"e83df55\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-horizontal-timeline\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Ongoing Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(949,195,'_elementor_page_assets','a:1:{s:6:\"styles\";a:33:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";}}'),(950,196,'_wp_page_template','elementor_header_footer'),(951,196,'_elementor_edit_mode','builder'),(952,196,'_elementor_template_type','wp-page'),(953,196,'_elementor_version','3.14.1'),(954,196,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84ec054\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"357cae1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fb6aec9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"29a97fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"af8adcf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee7244d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce5f491\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"8ce31b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"b071a9e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"d14a73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"08a704d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"4c67352\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fd98977\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"jki jki-file-2-light\",\"library\":\"jkiticon\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"bad6241\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"e83df55\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-horizontal-timeline\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Ongoing Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(955,196,'_elementor_page_assets','a:1:{s:6:\"styles\";a:37:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";}}'),(956,197,'_wp_page_template','elementor_header_footer'),(957,197,'_elementor_edit_mode','builder'),(958,197,'_elementor_template_type','wp-page'),(959,197,'_elementor_version','3.14.1'),(960,197,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84ec054\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"357cae1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fb6aec9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"29a97fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"af8adcf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee7244d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce5f491\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"8ce31b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"b071a9e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"d14a73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"08a704d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"4c67352\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fd98977\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"jki jki-file-2-light\",\"library\":\"jkiticon\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"bad6241\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"e83df55\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-horizontal-timeline\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Ongoing Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(961,197,'_elementor_page_assets','a:1:{s:6:\"styles\";a:37:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";}}'),(962,198,'_wp_page_template','elementor_header_footer'),(963,198,'_elementor_edit_mode','builder'),(964,198,'_elementor_template_type','wp-page'),(965,198,'_elementor_version','3.14.1'),(966,198,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84ec054\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"357cae1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fb6aec9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"29a97fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"af8adcf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee7244d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce5f491\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"8ce31b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"b071a9e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"d14a73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"08a704d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"4c67352\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fd98977\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"jki jki-file-2-light\",\"library\":\"jkiticon\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"bad6241\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"e83df55\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-horizontal-timeline\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Ongoing Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(967,198,'_elementor_page_assets','a:1:{s:6:\"styles\";a:37:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";}}'),(977,201,'_wp_attached_file','2023/07/Strong-Internet-Presence.webp'),(978,201,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:810;s:6:\"height\";i:810;s:4:\"file\";s:37:\"2023/07/Strong-Internet-Presence.webp\";s:8:\"filesize\";i:13036;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Strong-Internet-Presence-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5314;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Strong-Internet-Presence-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2612;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Strong-Internet-Presence-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14450;}s:25:\"elementor_custom_820x1024\";a:4:{s:4:\"file\";s:54:\"elementor/thumbs/Strong-Internet-Presence-150x150.webp\";s:5:\"width\";i:820;s:6:\"height\";i:1024;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:{}}}'),(979,201,'_wp_attachment_image_alt',''),(980,202,'_wp_attached_file','2023/07/Outstanding-Online-Reputation.webp'),(981,202,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:810;s:6:\"height\";i:810;s:4:\"file\";s:42:\"2023/07/Outstanding-Online-Reputation.webp\";s:8:\"filesize\";i:11254;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Outstanding-Online-Reputation-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4240;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Outstanding-Online-Reputation-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:1950;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Outstanding-Online-Reputation-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11918;}}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:{}}}'),(982,202,'_wp_attachment_image_alt','Outstanding Online Reputation'),(983,203,'_wp_attached_file','2023/07/Solidified-Patient-Experience.webp'),(984,203,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:810;s:6:\"height\";i:810;s:4:\"file\";s:42:\"2023/07/Solidified-Patient-Experience.webp\";s:8:\"filesize\";i:12440;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Solidified-Patient-Experience-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4690;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Solidified-Patient-Experience-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2206;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Solidified-Patient-Experience-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13290;}}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:{}}}'),(985,203,'_wp_attachment_image_alt','Solidified Patient Experience'),(986,204,'_wp_attached_file','2023/07/Satisfied-Loyal-Patient-Base.webp'),(987,204,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:810;s:6:\"height\";i:810;s:4:\"file\";s:41:\"2023/07/Satisfied-Loyal-Patient-Base.webp\";s:8:\"filesize\";i:10072;s:5:\"sizes\";a:3:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Satisfied-Loyal-Patient-Base-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3908;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Satisfied-Loyal-Patient-Base-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2014;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Satisfied-Loyal-Patient-Base-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10894;}}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:{}}}'),(988,204,'_wp_attachment_image_alt','Satisfied & Loyal Patient Base'),(992,206,'_wp_attached_file','2023/07/Heathcare-Industry-Potrait.webp'),(993,206,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:39:\"2023/07/Heathcare-Industry-Potrait.webp\";s:8:\"filesize\";i:26194;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Heathcare-Industry-Potrait-300x300.webp\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7280;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"Heathcare-Industry-Potrait-1024x1024.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:28792;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Heathcare-Industry-Potrait-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3256;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"Heathcare-Industry-Potrait-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:21028;}s:25:\"elementor_custom_820x1024\";a:4:{s:4:\"file\";s:91:\"elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\";s:5:\"width\";i:820;s:6:\"height\";i:1024;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:{}}}'),(994,206,'_wp_attachment_image_alt','Heathcare Industry Potrait'),(995,207,'_wp_page_template','elementor_header_footer'),(996,207,'_elementor_edit_mode','builder'),(997,207,'_elementor_template_type','wp-page'),(998,207,'_elementor_version','3.14.1'),(999,207,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84ec054\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"357cae1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fb6aec9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"29a97fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"af8adcf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee7244d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce5f491\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"8ce31b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"b071a9e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"d14a73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"08a704d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"4c67352\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fd98977\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"jki jki-file-2-light\",\"library\":\"jkiticon\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"bad6241\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"e83df55\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-horizontal-timeline\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Ongoing Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1000,207,'_elementor_page_assets','a:1:{s:6:\"styles\";a:37:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";}}'),(1001,208,'_wp_page_template','elementor_header_footer'),(1002,208,'_elementor_edit_mode','builder'),(1003,208,'_elementor_template_type','wp-page'),(1004,208,'_elementor_version','3.14.1');
INSERT INTO `wp_postmeta` VALUES (1005,208,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84ec054\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"357cae1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fb6aec9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"29a97fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"af8adcf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee7244d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce5f491\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"8ce31b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"b071a9e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"d14a73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"08a704d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"4c67352\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fd98977\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"jki jki-file-2-light\",\"library\":\"jkiticon\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"bad6241\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"e83df55\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-horizontal-timeline\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Ongoing Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Choose Us\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Best Theraphy For Your Mental Satisfactions\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"600af018\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#848E9F\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7ab6681d\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Quality Therapy Services\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":82,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"37091682\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Flexible Time\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":92,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"2256b851\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Best Conclusion\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":86,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=secondary\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7fd4c30f\",\"elType\":\"widget\",\"settings\":{\"sg_progress_title\":\"Professional Psychologist\",\"sg_progress_percentage\":{\"unit\":\"px\",\"size\":90,\"sizes\":[]},\"st_bar_background_background_background\":\"classic\",\"st_bar_background_background_color\":\"#F3F3F3\",\"st_bar_height_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_bar_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_track_background_background_background\":\"classic\",\"st_track_background_background_color\":\"#E17141\",\"st_track_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_title_color_responsive\":\"#06685F\",\"__globals__\":{\"st_bar_background_background_color\":\"\",\"st_track_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=1660fa3\",\"st_percent_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_percent_color_responsive\":\"globals\\/colors?id=text\"},\"st_percent_color_responsive\":\"#7A7A7A\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"jkit_progress_bar\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"7c3223d0\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"24\\/7 Phone counseling services for clients\",\"_id\":\"a978734\"},{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true},{\"id\":\"22ab2b06\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"35298412\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Really know the true needs and expectations of clients\",\"_id\":\"1cd10a1\"},{\"text\":\"All reports for clients are made simple and easy to understand\",\"_id\":\"c6767db\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"globals\\/colors?id=accent\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"132\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-problems.jpg\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3db69278\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-362\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"gap\":\"no\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-363\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-55\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4c04046\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":31.513000000000002},\"elements\":[],\"isInner\":true},{\"id\":\"712baa91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":68.486999999999995,\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"3\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":true},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"border_width\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_radius_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_border\":\"solid\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"20\",\"bottom\":\"40\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"2df3c5f7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Working Hours\",\"header_size\":\"h4\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=01acdab\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78dcd967\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65c0f168\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Mon - Thurs : 9.00 A.M - 5.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Fri - Sun : 9.00 A.M - 1.00 P.M\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"_id\":\"11bdb81\"}],\"space_between\":{\"unit\":\"px\",\"size\":\"13\",\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=secondary\",\"icon_typography_typography\":\"\"},\"icon_color\":\"#E17141\",\"text_color\":\"#BFBFBF\"},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"74ad8a70\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":29,\"sizes\":[]},\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"gap\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"__globals__\":{\"color\":\"\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6e6ce8af\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"icon icon-phone1\",\"library\":\"ekiticons\"},\"title_text\":\"(+021) 2336 278\",\"description_text\":\"\",\"position\":\"left\",\"icon_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"content_vertical_alignment\":\"middle\",\"title_bottom_space\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"__globals__\":{\"primary_color\":\"\",\"description_color\":\"\",\"title_typography_typography\":\"globals\\/typography?id=accent\",\"secondary_color\":\"\"},\"primary_color\":\"#FFFFFF\",\"description_color\":\"#FFFFFF\",\"description_typography_font_family\":\"Heebo\",\"description_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"description_typography_font_weight\":\"400\",\"description_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"text_align_mobile\":\"left\",\"view\":\"framed\",\"secondary_color\":\"#E17141\",\"icon_padding\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"icon-box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1006,208,'_elementor_page_assets','a:1:{s:6:\"styles\";a:37:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";}}'),(1007,209,'_wp_page_template','elementor_header_footer'),(1008,209,'_elementor_edit_mode','builder'),(1009,209,'_elementor_template_type','wp-page'),(1010,209,'_elementor_version','3.14.1'),(1011,209,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84ec054\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"357cae1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fb6aec9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"29a97fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"af8adcf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee7244d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce5f491\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"8ce31b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"b071a9e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"d14a73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"08a704d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"4c67352\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fd98977\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"jki jki-file-2-light\",\"library\":\"jkiticon\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"bad6241\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"e83df55\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-horizontal-timeline\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Ongoing Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"52\",\"bottom\":\"52\",\"left\":\"52\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1012,209,'_elementor_page_assets','a:1:{s:6:\"styles\";a:37:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";i:36;s:12:\"e-animations\";}}'),(1019,211,'_wp_page_template','elementor_header_footer'),(1020,211,'_elementor_edit_mode','builder'),(1021,211,'_elementor_template_type','wp-page'),(1022,211,'_elementor_version','3.14.1'),(1023,211,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84ec054\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"357cae1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fb6aec9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"29a97fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"af8adcf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee7244d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce5f491\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"8ce31b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"b071a9e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"d14a73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"08a704d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"4c67352\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fd98977\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"jki jki-file-2-light\",\"library\":\"jkiticon\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"bad6241\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"e83df55\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-horizontal-timeline\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Ongoing Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"52\",\"bottom\":\"52\",\"left\":\"52\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1024,211,'_elementor_page_assets','a:1:{s:6:\"styles\";a:36:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";}}'),(1025,212,'_wp_page_template','elementor_header_footer'),(1026,212,'_elementor_edit_mode','builder'),(1027,212,'_elementor_template_type','wp-page'),(1028,212,'_elementor_version','3.14.1'),(1029,212,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84ec054\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"357cae1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fb6aec9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"29a97fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"af8adcf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee7244d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce5f491\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"8ce31b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"b071a9e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"d14a73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"08a704d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"4c67352\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fd98977\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"jki jki-file-2-light\",\"library\":\"jkiticon\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"bad6241\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"e83df55\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-horizontal-timeline\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Ongoing Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"52\",\"bottom\":\"52\",\"left\":\"52\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\" Our Successfully Completed Cases\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1030,212,'_elementor_page_assets','a:1:{s:6:\"styles\";a:36:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";}}'),(1031,213,'_wp_page_template','elementor_header_footer'),(1032,213,'_elementor_edit_mode','builder'),(1033,213,'_elementor_template_type','wp-page'),(1034,213,'_elementor_version','3.14.1'),(1035,213,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84ec054\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"357cae1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fb6aec9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"29a97fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"af8adcf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee7244d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce5f491\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"8ce31b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"b071a9e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"d14a73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"08a704d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"4c67352\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fd98977\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"jki jki-file-2-light\",\"library\":\"jkiticon\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"bad6241\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"e83df55\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-horizontal-timeline\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Ongoing Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"52\",\"bottom\":\"52\",\"left\":\"52\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1036,213,'_elementor_page_assets','a:1:{s:6:\"styles\";a:36:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";}}'),(1037,214,'_wp_page_template','elementor_canvas'),(1038,214,'metform_form__form_setting','a:134:{s:10:\"form_title\";s:8:\"Book Now\";s:9:\"form_type\";s:12:\"general-form\";s:15:\"success_message\";s:39:\"Thank you! Form submitted successfully.\";s:12:\"quiz_summery\";s:0:\"\";s:13:\"store_entries\";s:1:\"1\";s:11:\"entry_title\";s:0:\"\";s:26:\"hide_form_after_submission\";s:0:\"\";s:11:\"redirect_to\";s:0:\"\";s:11:\"success_url\";s:0:\"\";s:17:\"failed_cancel_url\";s:0:\"\";s:13:\"require_login\";s:0:\"\";s:26:\"limit_total_entries_status\";s:0:\"\";s:19:\"limit_total_entries\";s:0:\"\";s:11:\"count_views\";s:0:\"\";s:26:\"mf_stop_vertical_scrolling\";s:0:\"\";s:19:\"multiple_submission\";s:0:\"\";s:16:\"enable_recaptcha\";s:0:\"\";s:25:\"capture_user_browser_data\";s:0:\"\";s:24:\"enable_user_notification\";s:0:\"\";s:18:\"user_email_subject\";s:0:\"\";s:15:\"user_email_from\";s:0:\"\";s:19:\"user_email_reply_to\";s:0:\"\";s:15:\"user_email_body\";s:0:\"\";s:33:\"user_email_attach_submission_copy\";s:0:\"\";s:25:\"enable_admin_notification\";s:0:\"\";s:19:\"admin_email_subject\";s:0:\"\";s:16:\"admin_email_from\";s:0:\"\";s:14:\"admin_email_to\";s:0:\"\";s:20:\"admin_email_reply_to\";s:0:\"\";s:16:\"admin_email_body\";s:0:\"\";s:34:\"admin_email_attach_submission_copy\";s:0:\"\";s:13:\"mf_mail_chimp\";s:0:\"\";s:15:\"mf_get_response\";s:0:\"\";s:22:\"mf_get_reponse_api_key\";s:0:\"\";s:23:\"mf_get_response_list_id\";s:0:\"\";s:11:\"mf_automizy\";s:0:\"\";s:21:\"mf_automizy_api_token\";s:0:\"\";s:19:\"mf_automizy_list_id\";s:0:\"\";s:11:\"mf_rest_api\";s:0:\"\";s:15:\"mf_rest_api_url\";s:0:\"\";s:18:\"mf_rest_api_method\";s:0:\"\";s:20:\"mf_mailchimp_api_key\";s:0:\"\";s:26:\"mf_active_campaign_api_key\";s:0:\"\";s:22:\"mf_active_campaign_url\";s:0:\"\";s:20:\"mf_mailchimp_list_id\";s:0:\"\";s:9:\"mf_zapier\";s:0:\"\";s:17:\"mf_zapier_webhook\";s:0:\"\";s:8:\"mf_slack\";s:0:\"\";s:16:\"mf_slack_webhook\";s:0:\"\";s:9:\"mf_fluent\";s:0:\"\";s:17:\"mf_fluent_webhook\";s:0:\"\";s:17:\"mf_thank_you_page\";s:0:\"\";s:14:\"mf_cancel_page\";s:0:\"\";s:9:\"mf_paypal\";s:0:\"\";s:19:\"mf_payment_currency\";s:0:\"\";s:15:\"mf_paypal_email\";s:0:\"\";s:15:\"mf_paypal_token\";s:0:\"\";s:17:\"mf_paypal_sandbox\";s:0:\"\";s:9:\"mf_stripe\";s:0:\"\";s:19:\"mf_stripe_image_url\";s:0:\"\";s:31:\"mf_stripe_live_publishiable_key\";s:0:\"\";s:25:\"mf_stripe_live_secret_key\";s:0:\"\";s:17:\"mf_stripe_sandbox\";s:0:\"\";s:31:\"mf_stripe_test_publishiable_key\";s:0:\"\";s:25:\"mf_stripe_test_secret_key\";s:0:\"\";s:21:\"mf_google_map_api_key\";s:0:\"\";s:16:\"mf_save_progress\";s:0:\"\";s:12:\"mf_recaptcha\";s:0:\"\";s:20:\"mf_recaptcha_version\";s:0:\"\";s:21:\"mf_recaptcha_site_key\";s:0:\"\";s:23:\"mf_recaptcha_secret_key\";s:0:\"\";s:24:\"mf_recaptcha_site_key_v3\";s:0:\"\";s:26:\"mf_recaptcha_secret_key_v3\";s:0:\"\";s:14:\"mf_convert_kit\";s:0:\"\";s:15:\"mf_ckit_list_id\";s:0:\"\";s:15:\"mf_ckit_api_key\";s:0:\"\";s:15:\"mf_ckit_sec_key\";s:0:\"\";s:21:\"mf_aweber_dev_api_key\";s:0:\"\";s:21:\"mf_aweber_dev_api_sec\";s:0:\"\";s:14:\"mf_mail_aweber\";s:0:\"\";s:17:\"mf_aweber_list_id\";s:0:\"\";s:18:\"mf_active_campaign\";s:0:\"\";s:26:\"mf_active_campaign_list_id\";s:0:\"\";s:25:\"mf_active_campaign_tag_id\";s:0:\"\";s:12:\"mf_mail_poet\";s:0:\"\";s:20:\"mf_mail_poet_list_id\";s:0:\"\";s:10:\"mf_hubspot\";s:0:\"\";s:16:\"mf_hubspot_forms\";s:0:\"\";s:16:\"mf_hubsopt_token\";s:0:\"\";s:24:\"mf_hubsopt_refresh_token\";s:0:\"\";s:21:\"mf_hubsopt_token_type\";s:0:\"\";s:21:\"mf_hubsopt_expires_in\";s:0:\"\";s:20:\"mf_hubspot_form_guid\";s:0:\"\";s:24:\"mf_hubspot_form_portalId\";s:0:\"\";s:7:\"mf_zoho\";s:0:\"\";s:13:\"mf_zoho_token\";s:0:\"\";s:15:\"mf_registration\";s:0:\"\";s:8:\"mf_login\";s:0:\"\";s:15:\"mf_form_to_post\";s:0:\"\";s:11:\"mf_mailster\";s:0:\"\";s:19:\"mf_mailster_list_id\";s:0:\"\";s:18:\"mf_mailster_fields\";s:0:\"\";s:28:\"mf_post_submission_post_type\";s:0:\"\";s:24:\"mf_post_submission_title\";s:0:\"\";s:26:\"mf_post_submission_content\";s:0:\"\";s:25:\"mf_post_submission_author\";s:0:\"\";s:33:\"mf_post_submission_featured_image\";s:0:\"\";s:12:\"mf_helpscout\";s:0:\"\";s:19:\"mf_helpscout_app_id\";s:0:\"\";s:23:\"mf_helpscout_app_secret\";s:0:\"\";s:18:\"mf_helpscout_token\";s:0:\"\";s:20:\"mf_helpscout_mailbox\";s:0:\"\";s:33:\"mf_helpscout_conversation_subject\";s:0:\"\";s:40:\"mf_helpscout_conversation_customer_email\";s:0:\"\";s:45:\"mf_helpscout_conversation_customer_first_name\";s:0:\"\";s:44:\"mf_helpscout_conversation_customer_last_name\";s:0:\"\";s:42:\"mf_helpscout_conversation_customer_message\";s:0:\"\";s:15:\"mf_google_sheet\";s:0:\"\";s:25:\"mf_google_sheet_client_id\";s:0:\"\";s:29:\"mf_google_sheet_client_secret\";s:0:\"\";s:25:\"email_verification_enable\";s:0:\"\";s:32:\"email_verification_email_subject\";s:0:\"\";s:35:\"email_verification_confirm_redirect\";s:0:\"\";s:26:\"email_verification_heading\";s:0:\"\";s:28:\"email_verification_paragraph\";s:0:\"\";s:13:\"mf_sms_status\";s:0:\"\";s:11:\"mf_sms_from\";s:0:\"\";s:25:\"mf_sms_twilio_account_sid\";s:0:\"\";s:24:\"mf_sms_twilio_auth_token\";s:0:\"\";s:18:\"mf_sms_user_status\";s:0:\"\";s:16:\"mf_sms_user_body\";s:0:\"\";s:19:\"mf_sms_admin_status\";s:0:\"\";s:17:\"mf_sms_admin_body\";s:0:\"\";s:15:\"mf_sms_admin_to\";s:0:\"\";}'),(1039,214,'_elementor_edit_mode','builder'),(1040,214,'_metform_cloned_id','template-0'),(1041,214,'_elementor_template_type','wp-post'),(1042,214,'_elementor_version','3.14.1'),(1043,214,'_edit_lock','1689684008:1'),(1044,214,'ekit_post_views_count','2'),(1051,216,'_wp_page_template','elementor_canvas'),(1052,216,'_elementor_edit_mode','builder'),(1053,216,'_elementor_template_type','wp-post'),(1054,216,'_elementor_version','3.14.1'),(1055,217,'_wp_page_template','elementor_canvas'),(1056,217,'_elementor_edit_mode','builder'),(1057,217,'_elementor_template_type','wp-post'),(1058,217,'_elementor_version','3.14.1'),(1059,214,'_elementor_data','[{\"id\":\"2d17b84\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"83f438c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"32bfc49\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"First Name (Listing)\",\"mf_input_placeholder\":\"First Name \",\"mf_input_required\":\"yes\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#EC95A6\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"mf_input_box_shadow_box_shadow_type\":\"yes\",\"mf_input_placeholder_color\":\"#000000\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":267}},\"elements\":[],\"widgetType\":\"mf-listing-fname\"}],\"isInner\":false},{\"id\":\"dd47b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4fd27d5\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Last Name (Listing)\",\"mf_input_placeholder\":\"Last Name\",\"mf_input_required\":\"yes\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#EC95A6\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"mf_input_box_shadow_box_shadow_type\":\"yes\",\"mf_input_placeholder_color\":\"#000000\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":269}},\"elements\":[],\"widgetType\":\"mf-listing-lname\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d36e78\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"caf1c2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"82569cf\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Number\",\"mf_input_name\":\"mf-number\",\"mf_input_placeholder\":\"Number\",\"mf_input_required\":\"yes\",\"mf_input_validation_type\":\"by_character_length\",\"mf_input_min_length\":10,\"mf_input_max_length\":10,\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#EC95A6\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"mf_input_box_shadow_box_shadow_type\":\"yes\",\"mf_input_placeholder_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"mf-number\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2bea8c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d54a6fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6359b69\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Email\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"Email\",\"mf_input_required\":\"yes\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#EC95A6\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"mf_input_box_shadow_box_shadow_type\":\"yes\",\"mf_input_placeholder_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"mf-email\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"759d54a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"89bf901\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0dcb4f7\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Text\",\"mf_input_name\":\"mf-text\",\"mf_input_placeholder\":\"How Can We Help You?\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#EC95A6\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"mf_input_box_shadow_box_shadow_type\":\"yes\",\"mf_input_placeholder_color\":\"#0A0A0A\"},\"elements\":[],\"widgetType\":\"mf-text\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0847ca9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1aa6ecc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b209bc\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"Book Now\",\"mf_hidden_input\":[],\"mf_btn_text_color\":\"#FFFFFF\",\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_bg_color_color\":\"#DD697E\",\"mf_btn_bg_hover_color_background\":\"gradient\",\"mf_btn_bg_hover_color_color\":\"#EC95A6\",\"mf_btn_bg_hover_color_color_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"mf_btn_bg_hover_color_color_b_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":false}],\"isInner\":false}]'),(1060,218,'_wp_page_template','elementor_canvas'),(1061,218,'_elementor_edit_mode','builder'),(1062,218,'_elementor_template_type','wp-post'),(1063,218,'_elementor_version','3.14.1'),(1064,218,'_elementor_data','[{\"id\":\"2d17b84\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"83f438c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"32bfc49\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"First Name (Listing)\",\"mf_input_placeholder\":\"First Name \",\"mf_input_required\":\"yes\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#EC95A6\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"mf_input_box_shadow_box_shadow_type\":\"yes\",\"mf_input_placeholder_color\":\"#000000\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":267}},\"elements\":[],\"widgetType\":\"mf-listing-fname\"}],\"isInner\":false},{\"id\":\"dd47b53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null},\"elements\":[{\"id\":\"4fd27d5\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Last Name (Listing)\",\"mf_input_placeholder\":\"Last Name\",\"mf_input_required\":\"yes\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#EC95A6\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"mf_input_box_shadow_box_shadow_type\":\"yes\",\"mf_input_placeholder_color\":\"#000000\",\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":269}},\"elements\":[],\"widgetType\":\"mf-listing-lname\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4d36e78\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"caf1c2f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"82569cf\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Number\",\"mf_input_name\":\"mf-number\",\"mf_input_placeholder\":\"Number\",\"mf_input_required\":\"yes\",\"mf_input_validation_type\":\"by_character_length\",\"mf_input_min_length\":10,\"mf_input_max_length\":10,\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#EC95A6\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"mf_input_box_shadow_box_shadow_type\":\"yes\",\"mf_input_placeholder_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"mf-number\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2bea8c\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d54a6fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"6359b69\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Email\",\"mf_input_name\":\"mf-email\",\"mf_input_placeholder\":\"Email\",\"mf_input_required\":\"yes\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#EC95A6\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"mf_input_box_shadow_box_shadow_type\":\"yes\",\"mf_input_placeholder_color\":\"#000000\"},\"elements\":[],\"widgetType\":\"mf-email\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"759d54a\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"89bf901\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"0dcb4f7\",\"elType\":\"widget\",\"settings\":{\"mf_input_label_status\":\"\",\"mf_input_label\":\"Text\",\"mf_input_name\":\"mf-text\",\"mf_input_placeholder\":\"How Can We Help You?\",\"mf_input_validation_warning_message\":\"This field is required.\",\"mf_input_background_background\":\"classic\",\"mf_input_background_color\":\"#EC95A6\",\"mf_input_border_radius\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"mf_input_box_shadow_box_shadow_type\":\"yes\",\"mf_input_placeholder_color\":\"#0A0A0A\"},\"elements\":[],\"widgetType\":\"mf-text\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0847ca9\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"1aa6ecc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"1b209bc\",\"elType\":\"widget\",\"settings\":{\"mf_btn_text\":\"Book Now\",\"mf_hidden_input\":[],\"mf_btn_text_color\":\"#FFFFFF\",\"mf_btn_bg_color_background\":\"classic\",\"mf_btn_bg_color_color\":\"#DD697E\",\"mf_btn_bg_hover_color_background\":\"gradient\",\"mf_btn_bg_hover_color_color\":\"#EC95A6\",\"mf_btn_bg_hover_color_color_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"mf_btn_bg_hover_color_color_b_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"mf-button\"}],\"isInner\":false}],\"isInner\":false}]'),(1065,214,'_elementor_page_assets','a:0:{}'),(1067,219,'_wp_attached_file','2023/07/Health-Cloud-Logo.webp'),(1068,219,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2041;s:6:\"height\";i:1621;s:4:\"file\";s:30:\"2023/07/Health-Cloud-Logo.webp\";s:8:\"filesize\";i:17558;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"Health-Cloud-Logo-300x238.webp\";s:5:\"width\";i:300;s:6:\"height\";i:238;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5678;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"Health-Cloud-Logo-1024x813.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:813;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19454;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"Health-Cloud-Logo-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3288;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"Health-Cloud-Logo-768x610.webp\";s:5:\"width\";i:768;s:6:\"height\";i:610;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14564;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"Health-Cloud-Logo-1536x1220.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1220;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:29672;}}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:{}}}'),(1069,219,'_wp_attachment_image_alt','Health-Cloud-Logo'),(1166,233,'_wp_page_template','elementor_header_footer'),(1167,233,'_elementor_edit_mode','builder'),(1168,233,'_elementor_template_type','wp-page'),(1169,233,'_elementor_version','3.14.1');
INSERT INTO `wp_postmeta` VALUES (1170,233,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84ec054\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"357cae1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fb6aec9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"29a97fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"af8adcf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee7244d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce5f491\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"8ce31b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"b071a9e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"d14a73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"08a704d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"4c67352\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fd98977\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"jki jki-file-2-light\",\"library\":\"jkiticon\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"bad6241\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"e83df55\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-horizontal-timeline\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Ongoing Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"52\",\"bottom\":\"52\",\"left\":\"52\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1171,233,'_elementor_page_assets','a:1:{s:6:\"styles\";a:36:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";}}'),(1172,234,'_wp_page_template','elementor_header_footer'),(1173,234,'_elementor_edit_mode','builder'),(1174,234,'_elementor_template_type','wp-page'),(1175,234,'_elementor_version','3.14.1'),(1176,234,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84ec054\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"357cae1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fb6aec9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"29a97fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"af8adcf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee7244d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce5f491\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"8ce31b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"b071a9e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"d14a73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"08a704d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"4c67352\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fd98977\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"jki jki-file-2-light\",\"library\":\"jkiticon\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"bad6241\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"e83df55\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-horizontal-timeline\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Ongoing Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"52\",\"right\":\"52\",\"bottom\":\"52\",\"left\":\"52\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1177,234,'_elementor_page_assets','a:1:{s:6:\"styles\";a:36:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";}}'),(1178,235,'_wp_page_template','elementor_header_footer'),(1179,235,'_elementor_edit_mode','builder'),(1180,235,'_elementor_template_type','wp-page'),(1181,235,'_elementor_version','3.14.1'),(1182,235,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84ec054\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"357cae1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fb6aec9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"29a97fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"af8adcf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee7244d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce5f491\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"8ce31b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"b071a9e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"d14a73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"08a704d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"4c67352\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fd98977\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"jki jki-file-2-light\",\"library\":\"jkiticon\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"bad6241\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"e83df55\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-horizontal-timeline\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Ongoing Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1183,235,'_elementor_page_assets','a:1:{s:6:\"styles\";a:36:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";}}'),(1192,237,'_wp_attached_file','2023/07/Animation-1689670159417.json'),(1193,237,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:50145;}'),(1194,238,'_wp_attached_file','2023/07/Animation-1689670633776.json'),(1195,238,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:142612;}'),(1196,239,'_wp_attached_file','2023/07/Animation-1689670914229.json'),(1197,239,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:92488;}'),(1198,240,'_wp_page_template','elementor_header_footer'),(1199,240,'_elementor_edit_mode','builder'),(1200,240,'_elementor_template_type','wp-page'),(1201,240,'_elementor_version','3.14.1'),(1202,240,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84ec054\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"357cae1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fb6aec9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"29a97fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"af8adcf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee7244d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce5f491\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"8ce31b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"b071a9e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"d14a73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"08a704d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"4c67352\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fd98977\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"jki jki-file-2-light\",\"library\":\"jkiticon\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"bad6241\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"e83df55\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-horizontal-timeline\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Ongoing Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1203,240,'_elementor_page_assets','a:1:{s:6:\"styles\";a:36:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";}}'),(1204,241,'_wp_page_template','elementor_header_footer'),(1205,241,'_elementor_edit_mode','builder'),(1206,241,'_elementor_template_type','wp-page'),(1207,241,'_elementor_version','3.14.1'),(1208,241,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"84ec054\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"357cae1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fb6aec9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"29a97fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"af8adcf\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Psychology and Mental Health Counseling\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ee7244d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Trust Us To Be There To Help All and Make Things Well Again\\n\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_animation\":\"fadeInUp\",\"_animation_delay\":100,\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\"}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ce5f491\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#F0F0F0\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"70\",\"left\":0,\"isLinked\":false},\"structure\":\"40\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true}},\"elements\":[{\"id\":\"8ce31b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"b071a9e\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-team1\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"1134\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Happy Clients\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"d14a73d\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"08a704d\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-badge\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"12\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Years Of Experience\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"4c67352\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"fd98977\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"jki jki-file-2-light\",\"library\":\"jkiticon\"},\"ekit_funfact_number\":\"25\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Successful Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"},{\"id\":\"bad6241\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size_mobile\":50,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"e83df55\",\"elType\":\"widget\",\"settings\":{\"ekit_funfact_icons\":{\"value\":\"icon icon-horizontal-timeline\",\"library\":\"ekiticons\"},\"ekit_funfact_number\":\"2125\",\"ekit_funfact_number_suffix\":\"\",\"ekit_funfact_title_text\":\"Ongoing Projects\",\"ekit_funfact_super\":\"yes\",\"ekit_funfact_super_text\":\"+\",\"ekit_funfact_icon_space\":{\"unit\":\"px\",\"size\":\"20\",\"sizes\":[]},\"ekit_funfact_icon_padding\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_funfact_number_count_bottom_space\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"__globals__\":{\"ekit_funfact_icon_primary_color\":\"\",\"ekit_funfact_description_color\":\"globals\\/colors?id=e5c8540\",\"ekit_funfact_title_color\":\"\",\"ekit_funfact_number_typography_typography\":\"globals\\/typography?id=919cf83\",\"ekit_funfact_title_typography_typography\":\"globals\\/typography?id=text\",\"ekit_funfact_super_typography_typography\":\"globals\\/typography?id=7f517b0\",\"ekit_funfact_super_color\":\"globals\\/colors?id=accent\",\"ekit_funfact_description_color_tablet\":\"\",\"ekit_funfact_title_color_tablet\":\"globals\\/colors?id=text\"},\"ekit_funfact_icon_size_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"ekit_funfact_icon_image\":{\"url\":\"\",\"id\":\"\",\"size\":\"\"},\"ekit_funfact_super_vertical_position\":\"middle\",\"ekit_funfact_icon_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_funfact_icon_primary_color\":\"#DD697E\",\"ekit_funfact_description_color\":\"#FFFFFF\",\"ekit_funfact_description_color_tablet\":\"#FFFFFF\",\"ekit_funfact_title_color\":\"#C3C3C3\",\"ekit_funfact_super_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"elementskit-funfact\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1209,241,'_elementor_page_assets','a:1:{s:6:\"styles\";a:36:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";}}'),(1210,242,'_wp_page_template','elementor_header_footer'),(1211,242,'_elementor_edit_mode','builder'),(1212,242,'_elementor_template_type','wp-page'),(1213,242,'_elementor_version','3.14.1');
INSERT INTO `wp_postmeta` VALUES (1214,242,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1215,242,'_elementor_page_assets','a:1:{s:6:\"styles\";a:36:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";i:35;s:12:\"e-animations\";}}'),(1218,110,'ekit_post_views_count','15'),(1219,243,'_wp_attached_file','2023/07/placeholder-176.png'),(1220,243,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2023/07/placeholder-176.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"placeholder-176-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2092;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"placeholder-176-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7582;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"placeholder-176-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"placeholder-176-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5437;}}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:{}}}'),(1221,243,'_elementor_source_image_hash','8249754ffb1b61cb0cc4c70e029c3be6dcc43287'),(1229,245,'_wp_page_template','elementor_header_footer'),(1230,245,'_elementor_edit_mode','builder'),(1231,245,'_elementor_template_type','wp-page'),(1232,245,'_elementor_version','3.14.1'),(1233,245,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1234,245,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1235,246,'_wp_page_template','elementor_header_footer'),(1236,246,'_elementor_edit_mode','builder'),(1237,246,'_elementor_template_type','wp-page'),(1238,246,'_elementor_version','3.14.1'),(1239,246,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1240,246,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1241,247,'_wp_page_template','elementor_header_footer'),(1242,247,'_elementor_edit_mode','builder'),(1243,247,'_elementor_template_type','wp-page'),(1244,247,'_elementor_version','3.14.1'),(1245,247,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1246,247,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1255,249,'_wp_attached_file','2023/07/influencer.svg'),(1256,249,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:6455;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),(1258,250,'_wp_attached_file','2023/07/reputation-management.svg'),(1259,250,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:8642;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),(1261,251,'_wp_attached_file','2023/07/paid-content.svg'),(1262,251,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:4993;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),(1264,252,'_wp_attached_file','2023/07/seo.svg'),(1265,252,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:5147;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),(1267,253,'_wp_attached_file','2023/07/social-media.svg'),(1268,253,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:5838;s:5:\"width\";i:512;s:6:\"height\";i:512;}'),(1270,254,'_wp_page_template','elementor_header_footer'),(1271,254,'_elementor_edit_mode','builder'),(1272,254,'_elementor_template_type','wp-page'),(1273,254,'_elementor_version','3.14.1'),(1274,254,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1275,254,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1276,255,'_wp_page_template','elementor_header_footer'),(1277,255,'_elementor_edit_mode','builder'),(1278,255,'_elementor_template_type','wp-page'),(1279,255,'_elementor_version','3.14.1'),(1280,255,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Psychology Services\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"50bd3da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#B6B6B6\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2bb23137\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"53461c80\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-therapist-working-with-fighting-young-couple.jpg\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"28698e18\",\"elType\":\"widget\",\"settings\":{\"space\":{\"unit\":\"px\",\"size\":39,\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":191,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"space_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"spacer\"},{\"id\":\"182434be\",\"elType\":\"widget\",\"settings\":{\"ekit_video_popup_button_title\":\"Play Video\",\"ekit_video_popup_button_icons\":{\"value\":\"icon icon-play-button\",\"library\":\"ekiticons\"},\"ekit_video_popup_url\":\"https:\\/\\/www.youtube.com\\/watch?v=1MTkZPys7mU\",\"ekit_video_popup_icon_size\":{\"unit\":\"px\",\"size\":21,\"sizes\":[]},\"ekit_video_popup_btn_line_height\":{\"unit\":\"px\",\"size\":64,\"sizes\":[]},\"ekit_video_popup_btn_glow_color\":\"#FFB19094\",\"ekit_video_popup_btn_bg_color_background\":\"classic\",\"ekit_video_popup_btn_bg_color_color\":\"#E17141\",\"ekit_video_popup_btn_bg_hover_color_background\":\"classic\",\"ekit_video_popup_icon_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"ekit_video_popup_btn_width_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_height_mobile\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"ekit_video_popup_btn_line_height_mobile\":{\"unit\":\"px\",\"size\":52,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-120\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"ekit_video_popup_btn_text_color\":\"\",\"ekit_video_popup_btn_bg_hover_color_color\":\"\",\"ekit_video_popup_btn_bg_color_color\":\"\",\"ekit_video_popup_btn_glow_color\":\"\"},\"ekit_video_popup_text_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"ekit_video_popup_btn_text_color\":\"#FFFFFF\",\"ekit_video_self_external_url\":\"https:\\/\\/wpmet.com\\/plugin\\/elementskit\\/wp-content\\/uploads\\/2022\\/11\\/selfhosted_video.mp4\"},\"elements\":[],\"widgetType\":\"elementskit-video\"}],\"isInner\":true},{\"id\":\"42212b69\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"7fec740a\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Stress Management\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7416edd8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"79c0aa96\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Depression Problem\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"5b0a3ee6\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"animation_delay\":80,\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"4b00fd4d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"375a7a71\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"118\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/family-XNUKDAT.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Family Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"7b75877e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null,\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"25a19790\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"120\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/anxiety-TYH9SPN.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Anxiety Disorder\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"24fcf3d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.28999999999999998,\"sizes\":[]},\"content_position\":\"center\",\"_inline_size\":null,\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"673e1e5e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"125\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/couple-RUUMCJ.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Couple Counseling\",\"sg_icon_description\":\"Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#01221F\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=50928c2\",\"st_content_title_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"yes\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_content_description_color_responsive\":\"#DEDEDE\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-80\",\"left\":\"0\",\"isLinked\":false},\"_z_index_tablet\":2},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Your Mental Health \",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1281,255,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1282,256,'_wp_page_template','elementor_header_footer'),(1283,256,'_elementor_edit_mode','builder'),(1284,256,'_elementor_template_type','wp-page'),(1285,256,'_elementor_version','3.14.1');
INSERT INTO `wp_postmeta` VALUES (1286,256,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Digital Marketing Services, A Brand Requires\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ceddb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"619f310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"bbee800\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Website Design\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-internet\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"6ba80f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"3c608f1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Social Media Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"dca7c04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"372ec13\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Search Engine Optimization\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"53bef75\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"c44bfaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"60c235e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Paid Media Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"bb608e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"94d36c9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Influencer Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"3f81e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"a2ffcc1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Online Reputation Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Upliftment Of Your Brand\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bring to us what troubles you and let us find the solution for you.<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1287,256,'_elementor_page_assets','a:1:{s:6:\"styles\";a:34:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";}}'),(1288,257,'_wp_page_template','elementor_header_footer'),(1289,257,'_elementor_edit_mode','builder'),(1290,257,'_elementor_template_type','wp-page'),(1291,257,'_elementor_version','3.14.1'),(1292,257,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Digital Marketing Services, A Brand Requires\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ceddb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"619f310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"bbee800\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Website Design\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-internet\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"6ba80f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"3c608f1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Social Media Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"dca7c04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"372ec13\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Search Engine Optimization\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"53bef75\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"c44bfaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"60c235e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Paid Media Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"bb608e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"94d36c9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Influencer Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"3f81e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"a2ffcc1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Online Reputation Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Upliftment Of Your Brand\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bring to us what troubles you and let us find the solution for you.<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1293,257,'_elementor_page_assets','a:1:{s:6:\"styles\";a:35:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";}}'),(1294,258,'_wp_page_template','elementor_header_footer'),(1295,258,'_elementor_edit_mode','builder'),(1296,258,'_elementor_template_type','wp-page'),(1297,258,'_elementor_version','3.14.1'),(1298,258,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Digital Marketing Services, A Brand Requires\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ceddb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"619f310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"bbee800\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Website Design\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-internet\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"6ba80f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"3c608f1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Social Media Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"dca7c04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"372ec13\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Search Engine Optimization\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"53bef75\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"c44bfaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"60c235e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Paid Media Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"bb608e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"94d36c9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Influencer Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"3f81e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"a2ffcc1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Online Reputation Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_setting_content_alignment_responsive\":\"left\",\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Upliftment Of Your Brand\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bring to us what troubles you and let us find the solution for you.<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1299,258,'_elementor_page_assets','a:1:{s:6:\"styles\";a:35:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";}}'),(1300,259,'_wp_page_template','elementor_header_footer'),(1301,259,'_elementor_edit_mode','builder'),(1302,259,'_elementor_template_type','wp-page'),(1303,259,'_elementor_version','3.14.1'),(1304,259,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Digital Marketing Services, A Brand Requires\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ceddb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"619f310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"bbee800\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Website Design\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-internet\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#000000\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"6ba80f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"3c608f1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Social Media Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/social-media.svg\",\"id\":253},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#DD697E\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"dca7c04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"372ec13\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Search Engine Optimization\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/seo.svg\",\"id\":252},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"53bef75\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"c44bfaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"60c235e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Paid Media Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/paid-content.svg\",\"id\":251},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"bb608e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"94d36c9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":249,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/influencer.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Influencer Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"3f81e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"a2ffcc1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":250,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/reputation-management.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Online Reputation Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Upliftment Of Your Brand\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bring to us what troubles you and let us find the solution for you.<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1305,259,'_elementor_page_assets','a:1:{s:6:\"styles\";a:35:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";}}'),(1312,261,'_wp_page_template','elementor_header_footer'),(1313,261,'_elementor_edit_mode','builder'),(1314,261,'_elementor_template_type','wp-page'),(1315,261,'_elementor_version','3.14.1'),(1316,261,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Digital Marketing Services, A Brand Requires\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ceddb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"619f310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"bbee800\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Website Design\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-internet\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#000000\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"6ba80f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"3c608f1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Social Media Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/social-media.svg\",\"id\":253},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#DD697E\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"dca7c04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"372ec13\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Search Engine Optimization\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/seo.svg\",\"id\":252},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"53bef75\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"c44bfaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"60c235e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Paid Media Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/paid-content.svg\",\"id\":251},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"bb608e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"94d36c9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":249,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/influencer.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Influencer Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"3f81e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"a2ffcc1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":250,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/reputation-management.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Online Reputation Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Upliftment Of Your Brand\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bring to us what troubles you and let us find the solution for you.<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1317,261,'_elementor_page_assets','a:1:{s:6:\"styles\";a:35:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";}}'),(1318,262,'_wp_page_template','elementor_header_footer'),(1319,262,'_elementor_edit_mode','builder'),(1320,262,'_elementor_template_type','wp-page'),(1321,262,'_elementor_version','3.14.1'),(1322,262,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Digital Marketing Services, A Brand Requires\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ceddb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"619f310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"bbee800\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Website Design\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-internet\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#000000\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"6ba80f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"3c608f1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Social Media Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/social-media.svg\",\"id\":253},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#DD697E\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"dca7c04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"372ec13\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Search Engine Optimization\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/seo.svg\",\"id\":252},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"53bef75\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"c44bfaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"60c235e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Paid Media Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/paid-content.svg\",\"id\":251},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"bb608e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"94d36c9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":249,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/influencer.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Influencer Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"3f81e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"a2ffcc1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":250,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/reputation-management.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Online Reputation Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Upliftment Of Your Brand\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bring to us what troubles you and let us find the solution for you.<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1323,262,'_elementor_page_assets','a:1:{s:6:\"styles\";a:35:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";}}'),(1324,263,'_wp_page_template','elementor_header_footer'),(1325,263,'_elementor_edit_mode','builder'),(1326,263,'_elementor_template_type','wp-page'),(1327,263,'_elementor_version','3.14.1');
INSERT INTO `wp_postmeta` VALUES (1328,263,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Digital Marketing Services, A Brand Requires\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ceddb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"619f310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"bbee800\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Website Design\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-internet\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#000000\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"6ba80f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"3c608f1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Social Media Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/social-media.svg\",\"id\":253},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#DD697E\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"dca7c04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"372ec13\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Search Engine Optimization\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/seo.svg\",\"id\":252},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"53bef75\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"c44bfaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"60c235e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Paid Media Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/paid-content.svg\",\"id\":251},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"bb608e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"94d36c9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":249,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/influencer.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Influencer Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"3f81e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"a2ffcc1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":250,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/reputation-management.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Online Reputation Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Upliftment Of Your Brand\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bring to us what troubles you and let us find the solution for you.<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1329,263,'_elementor_page_assets','a:1:{s:6:\"styles\";a:35:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";}}'),(1332,264,'_edit_lock','1689680610:1'),(1333,265,'mf_page_id','156'),(1334,265,'metform_entries_serial_no','1'),(1335,214,'metform_form__form_total_entries','1'),(1336,265,'metform_entries__form_id','214'),(1337,265,'metform_entries__form_data','a:5:{s:16:\"mf-listing-fname\";s:4:\"test\";s:16:\"mf-listing-lname\";s:4:\"test\";s:9:\"mf-number\";s:2:\"10\";s:8:\"mf-email\";s:14:\"test@gmail.com\";s:7:\"mf-text\";s:0:\"\";}'),(1338,265,'metform_entries__file_upload_new',NULL),(1339,265,'metform_entries__user_id','1'),(1340,265,'_edit_lock','1689683956:1'),(1341,267,'_wp_page_template','elementor_header_footer'),(1342,267,'_elementor_edit_mode','builder'),(1343,267,'_elementor_template_type','wp-page'),(1344,267,'_elementor_version','3.14.1'),(1345,267,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Digital Marketing Services, A Brand Requires\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ceddb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"619f310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"bbee800\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Website Design\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-internet\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#000000\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"6ba80f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"3c608f1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Social Media Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/social-media.svg\",\"id\":253},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#DD697E\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"dca7c04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"372ec13\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Search Engine Optimization\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/seo.svg\",\"id\":252},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"53bef75\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"c44bfaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"60c235e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Paid Media Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/paid-content.svg\",\"id\":251},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"bb608e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"94d36c9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":249,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/influencer.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Influencer Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"3f81e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"a2ffcc1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":250,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/reputation-management.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Online Reputation Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Upliftment Of Your Brand\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bring to us what troubles you and let us find the solution for you.<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1346,267,'_elementor_page_assets','a:1:{s:6:\"styles\";a:35:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";}}'),(1347,268,'_wp_page_template','elementor_header_footer'),(1348,268,'_elementor_edit_mode','builder'),(1349,268,'_elementor_template_type','wp-page'),(1350,268,'_elementor_version','3.14.1'),(1351,268,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false}},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Digital Marketing Services, A Brand Requires\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ceddb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"619f310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"bbee800\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Website Design\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-internet\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#000000\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"6ba80f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"3c608f1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Social Media Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/social-media.svg\",\"id\":253},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#DD697E\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"dca7c04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"372ec13\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Search Engine Optimization\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/seo.svg\",\"id\":252},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"53bef75\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"c44bfaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"60c235e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Paid Media Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/paid-content.svg\",\"id\":251},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"bb608e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"94d36c9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":249,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/influencer.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Influencer Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"3f81e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"a2ffcc1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":250,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/reputation-management.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Online Reputation Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Upliftment Of Your Brand\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bring to us what troubles you and let us find the solution for you.<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1352,268,'_elementor_page_assets','a:1:{s:6:\"styles\";a:35:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";}}'),(1357,269,'_wp_page_template','elementor_header_footer'),(1358,269,'_elementor_edit_mode','builder'),(1359,269,'_elementor_template_type','wp-page'),(1360,269,'_elementor_version','3.14.1'),(1361,269,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_element_id\":\"form\"},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Digital Marketing Services, A Brand Requires\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ceddb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"619f310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"bbee800\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Website Design\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-internet\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#000000\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"6ba80f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"3c608f1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Social Media Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/social-media.svg\",\"id\":253},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#DD697E\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"dca7c04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"372ec13\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Search Engine Optimization\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/seo.svg\",\"id\":252},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"53bef75\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"c44bfaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"60c235e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Paid Media Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/paid-content.svg\",\"id\":251},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"bb608e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"94d36c9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":249,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/influencer.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Influencer Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"3f81e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"a2ffcc1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":250,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/reputation-management.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Online Reputation Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Upliftment Of Your Brand\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bring to us what troubles you and let us find the solution for you.<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1362,269,'_elementor_page_assets','a:1:{s:6:\"styles\";a:35:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";}}'),(1377,271,'_wp_page_template','elementor_header_footer'),(1378,271,'_elementor_edit_mode','builder'),(1379,271,'_elementor_template_type','wp-page'),(1380,271,'_elementor_version','3.14.1'),(1381,271,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_element_id\":\"form\"},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Digital Marketing Services, A Brand Requires\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ceddb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"619f310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"bbee800\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Website Design\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-internet\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#000000\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"6ba80f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"3c608f1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Social Media Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/social-media.svg\",\"id\":253},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#DD697E\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"dca7c04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"372ec13\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Search Engine Optimization\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/seo.svg\",\"id\":252},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"53bef75\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"c44bfaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"60c235e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Paid Media Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/paid-content.svg\",\"id\":251},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"bb608e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"94d36c9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":249,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/influencer.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Influencer Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"3f81e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"a2ffcc1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":250,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/reputation-management.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Online Reputation Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Upliftment Of Your Brand\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bring to us what troubles you and let us find the solution for you.<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1382,271,'_elementor_page_assets','a:1:{s:6:\"styles\";a:35:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";}}'),(1383,272,'_wp_page_template','elementor_header_footer'),(1384,272,'_elementor_edit_mode','builder'),(1385,272,'_elementor_template_type','wp-page'),(1386,272,'_elementor_version','3.14.1'),(1387,272,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_element_id\":\"form\"},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"c79f029\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Digital Marketing Services, A Brand Requires\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ceddb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"619f310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"bbee800\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Website Design\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-internet\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#000000\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"6ba80f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"3c608f1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Social Media Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/social-media.svg\",\"id\":253},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#DD697E\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"dca7c04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"372ec13\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Search Engine Optimization\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/seo.svg\",\"id\":252},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"53bef75\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"c44bfaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"60c235e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Paid Media Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/paid-content.svg\",\"id\":251},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"bb608e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"94d36c9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":249,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/influencer.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Influencer Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"3f81e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"a2ffcc1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":250,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/reputation-management.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Online Reputation Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Upliftment Of Your Brand\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bring to us what troubles you and let us find the solution for you.<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1388,272,'_elementor_page_assets','a:1:{s:6:\"styles\";a:35:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";}}'),(1389,273,'_wp_page_template','elementor_header_footer'),(1390,273,'_elementor_edit_mode','builder'),(1391,273,'_elementor_template_type','wp-page'),(1392,273,'_elementor_version','3.14.1');
INSERT INTO `wp_postmeta` VALUES (1393,273,'_elementor_data','[{\"id\":\"5c508ee7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"120\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"layout\":\"full_width\"},\"elements\":[{\"id\":\"552ed7cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false}},\"elements\":[{\"id\":\"208d6901\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-120\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInUp\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"62\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/professional-providing-psychological-counseling-indoors.jpg\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"gradient\",\"background_overlay_color\":\"#000000\",\"background_overlay_color_stop\":{\"unit\":\"%\",\"size\":25,\"sizes\":[]},\"background_overlay_color_b\":\"#F2295B00\",\"background_overlay_color_b_stop\":{\"unit\":\"%\",\"size\":60,\"sizes\":[]},\"background_overlay_gradient_angle\":{\"unit\":\"deg\",\"size\":90,\"sizes\":[]},\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40000000000000002,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"180\",\"right\":\"0\",\"bottom\":\"180\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"120\",\"right\":\"20\",\"bottom\":\"120\",\"left\":\"20\",\"isLinked\":false},\"background_position_mobile\":\"initial\",\"background_xpos_mobile\":{\"unit\":\"%\",\"size\":49,\"sizes\":[]},\"background_ypos_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"107745b3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"content_position\":\"center\",\"_inline_size_tablet\":70},\"elements\":[{\"id\":\"11cfdce3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Your Healthcare Digital Marketing Agency\",\"align\":\"left\",\"title_color\":\"#FFFFFF\",\"header_size\":\"h1\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=primary\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInDown\",\"animation_duration\":\"slow\",\"align_tablet\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"44220827\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions<\\/p>\",\"text_color\":\"#ECECEC\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"769ca693\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"left\",\"icon_align\":\"right\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"40\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"auto\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\",\"link\":{\"url\":\"#form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60e02473\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.40999999999999998,\"sizes\":[]},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":10,\"blur\":30,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.2)\"},\"padding\":{\"unit\":\"%\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"25\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size_tablet\":30},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"297765b5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"6e3168ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"5c43f1a4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.\",\"align\":\"center\",\"title_color\":\"#06685F\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e9745ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.<\\/p>\",\"align\":\"center\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"12\",\"bottom\":\"0\",\"left\":\"12\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4767aa0e\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"z_index\":2,\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"43dcb9c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation_duration\":\"slow\",\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"48702273\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"icon icon-Computer\",\"library\":\"ekiticons\"},\"sg_icon_text\":\"Digital Marketing\",\"sg_icon_description\":\"drive more appointments, boost hospital online exposure, and increase patient engagement.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"4031c0cd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false}},\"elements\":[{\"id\":\"793e1b6c\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"jki jki-customer-support-2-light\",\"library\":\"jkiticon\"},\"sg_icon_text\":\"Website Design\",\"sg_icon_description\":\"Improve patient satisfaction and trust with expertly designed healthcare websites.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#FFFFFF\",\"st_content_description_color_responsive\":\"#A1A1A1\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_background_background_color\":\"#01221F\",\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_color_responsive\":\"#FFFFFF\",\"st_icon_bg_color_responsive\":\"#DD697E\",\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"18d7176c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6a238307\",\"elType\":\"widget\",\"settings\":{\"sg_setting_content_alignment_responsive\":\"left\",\"sg_icon_header\":{\"value\":\"fas fa-clinic-medical\",\"library\":\"fa-solid\"},\"sg_icon_text\":\"Offline Marketing Solutions\",\"sg_icon_description\":\"Expands reach, builds trust, and attracts patients effectively.\",\"sg_readmore_button_label\":\"Learn More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"30\",\"left\":\"40\",\"isLinked\":false},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_color_responsive\":\"#06685F\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"__globals__\":{\"st_content_title_color_responsive\":\"\",\"st_content_description_color_responsive\":\"\",\"st_icon_color_responsive\":\"\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_container_background_background_color\":\"\",\"st_icon_bg_color_responsive\":\"globals\\/colors?id=50928c2\"},\"sg_setting_html_tag\":\"h3\",\"st_container_padding_responsive_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":false},\"sg_setting_icon_position\":\"left\",\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_icon_color_responsive\":\"#DD697E\",\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true},\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"st_icon_size_responsive_mobile\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"73301e68\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"5810078f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\"},\"elements\":[{\"id\":\"609b803\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":187,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/About-Us.webp\",\"alt\":\"About Us\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"773a5630\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fc39b08\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Mindary\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4118e325\",\"elType\":\"widget\",\"settings\":{\"title\":\"Elevate Your Healthcare Brand Online, Reach New Heights of Success\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64ecda93\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:<\\/p>\",\"align\":\"left\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c1e393a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Amplify Your Online Presence\",\"_id\":\"a978734\"},{\"text\":\"Engage and Delight Patients\",\"_id\":\"c6767db\"},{\"text\":\"Achieve Unprecedented Success\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"72ee9e0a\",\"elType\":\"widget\",\"settings\":{\"text\":\"More About Us\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f927db\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_position\":\"center center\",\"background_size\":\"initial\",\"background_overlay_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_ypos\":{\"unit\":\"%\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"background_overlay_color\":\"\",\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_color_b\":\"#053C98\",\"background_attachment\":\"scroll\",\"background_repeat\":\"no-repeat\",\"background_bg_width\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"50\",\"left\":0,\"isLinked\":false},\"background_color\":\"#01221F\",\"background_overlay_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/dot-bg.png\"},\"background_overlay_position\":\"center center\",\"background_overlay_repeat\":\"no-repeat\",\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"structure\":\"20\"},\"elements\":[{\"id\":\"03f477e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.509999999999998,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"50\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"_element_id\":\"form\"},\"elements\":[{\"id\":\"2a14d55\",\"elType\":\"widget\",\"settings\":{\"mf_form_id\":\"214***1689601376371\"},\"elements\":[],\"widgetType\":\"metform\"}],\"isInner\":false},{\"id\":\"d2b09e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.079000000000001,\"margin\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ddcaa33\",\"elType\":\"widget\",\"settings\":{\"ekit_lottie_json\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Animation-1689670914229.json\",\"id\":239,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"-39\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"elementskit-lottie\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"535d3c9\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"d0ab18e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7eb1024\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Market Revenue\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"729685b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Facts That Show How Rapidly And Vast Healthcare Sector Is Growing\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b603014\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\",\"_id\":\"a978734\"},{\"text\":\"Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\",\"_id\":\"c6767db\"},{\"text\":\"As of 2021, the Indian healthcare sector is one of India\\u2019s largest employers as it employs a total of 4.7 million people. \",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"1b933f5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"9cf5c3a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":192,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Facts-about-healthcare-sector.webp\",\"alt\":\"Facts about healthcare sector\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b0636b5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"0fe19cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"45\",\"right\":\"45\",\"bottom\":\"45\",\"left\":\"45\",\"isLinked\":true}},\"elements\":[{\"id\":\"e7a619a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":181,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Vesak-Day-1.webp\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"920\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align\":\"right\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"hide_mobile\":\"hidden-phone\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"8d1fb9b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"60\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6211fab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Smartphone Penetration\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInRight\",\"animation_duration\":\"slow\",\"title_color\":\"#DE697E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7f3d992\",\"elType\":\"widget\",\"settings\":{\"title\":\"How Smartphone Penetration Is Creating Opportunities\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5070409\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"The greater the number of smartphone users, the greater the penetration.\",\"_id\":\"a978734\"},{\"text\":\"The greater the penetration, higher the chances to reach out to more and more people.\",\"_id\":\"c6767db\"},{\"text\":\"The greater penetration helps to create the Brand Imagery and let the people know about your services.\",\"_id\":\"1cd10a1\"}],\"space_between\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"text_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"icon_typography_typography\":\"globals\\/typography?id=text\",\"icon_color\":\"\"},\"text_color\":\"#7A7A7A\",\"icon_color\":\"#DE697E\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Inter\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"icon_typography_font_weight\":\"300\",\"icon_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"},{\"id\":\"385f042\",\"elType\":\"widget\",\"settings\":{\"text\":\"Go Digital\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\",\"link\":{\"url\":\"#form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1be92a51\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"background_background\":\"classic\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#FFFFFF\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=50928c2\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_image\":{\"id\":\"70\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg\"},\"background_overlay_position\":\"center center\",\"background_overlay_attachment\":\"fixed\",\"background_overlay_repeat\":\"no-repeat\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.14999999999999999,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"4776faf2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null},\"elements\":[{\"id\":\"336fddcb\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=accent\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"header_size\":\"h5\",\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"62cd943f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Healthcare Digital Marketing Services, A Brand Requires\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ceddb3\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"619f310\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"bbee800\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Website Design\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-internet\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#000000\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"6ba80f0\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"3c608f1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Social Media Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/social-media.svg\",\"id\":253},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#DD697E\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\",\"st_content_title_color_responsive\":\"#06685F\",\"st_content_title_typography_content_typography_typography\":\"custom\",\"st_content_title_typography_content_typography_font_family\":\"Playfair Display\",\"st_content_title_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"st_content_title_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"st_content_title_typography_content_typography_font_weight\":\"600\",\"st_content_title_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"st_content_title_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"st_content_description_typography_content_typography_typography\":\"custom\",\"st_content_description_typography_content_typography_font_family\":\"Inter\",\"st_content_description_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"st_content_description_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"st_content_description_typography_content_typography_font_weight\":\"300\",\"st_content_description_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"st_button_typography_content_typography_typography\":\"custom\",\"st_button_typography_content_typography_font_family\":\"Inter\",\"st_button_typography_content_typography_font_size\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_typography_content_typography_font_weight\":\"600\",\"st_button_typography_content_typography_text_transform\":\"uppercase\",\"st_button_typography_content_typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"st_button_typography_content_typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"st_button_typography_content_typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]}},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"dca7c04\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"372ec13\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"105\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/depression-2UJ6UY8.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Search Engine Optimization\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/seo.svg\",\"id\":252},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"53bef75\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"c44bfaa\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"60c235e\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":\"90\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/RUUMCJY.png\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Paid Media Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":{\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/paid-content.svg\",\"id\":251},\"library\":\"svg\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"},{\"id\":\"bb608e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"94d36c9\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":249,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/influencer.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Influencer Marketing\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":true},{\"id\":\"3f81e62\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":\"\"},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"a2ffcc1\",\"elType\":\"widget\",\"settings\":{\"sg_icon_image\":{\"id\":250,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/reputation-management.svg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"sg_icon_image_size_imagesize_size\":\"full\",\"sg_icon_text\":\"Healthcare Online Reputation Management\",\"sg_icon_description\":\"\",\"sg_readmore_button_label\":\"Read More\",\"sg_badge_text\":\"BADGE\",\"st_container_background_background_background\":\"classic\",\"st_container_background_background_color\":\"#FFFFFF\",\"st_container_background_background_color_b\":\"#121638\",\"st_container_background_background_color_b_stop\":{\"unit\":\"%\",\"size\":30,\"sizes\":[]},\"st_container_background_background_gradient_type\":\"radial\",\"st_container_background_background_gradient_position\":\"top left\",\"st_container_padding_responsive\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"40\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"st_container_border_border_border\":\"solid\",\"st_container_border_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_container_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_content_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"st_content_title_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_content_description_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_hover_animation\":\"float\",\"st_icon_height_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"st_container_background_background_color_b\":\"\",\"st_container_background_background_color\":\"globals\\/colors?id=e5c8540\",\"st_content_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_content_title_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_content_description_color_responsive\":\"globals\\/colors?id=text\",\"st_icon_bg_color_responsive\":\"\",\"st_content_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_button_normal_text_color_responsive\":\"\",\"st_button_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_icon_color_responsive\":\"globals\\/colors?id=accent\",\"st_container_border_border_color\":\"\",\"st_background_overlay_hover_color_background_color\":\"\"},\"sg_setting_html_tag\":\"h3\",\"sg_readmore_enable_button\":\"\",\"sg_readmore_button_enable_icon\":\"yes\",\"sg_readmore_button_icon\":{\"value\":\"fas fa-arrow-right\",\"library\":\"fa-solid\"},\"sg_readmore_button_icon_position\":\"after\",\"st_button_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_margin_responsive\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_button_icon_size_responsive\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"st_button_icon_spacing_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_button_normal_background_background_background\":\"classic\",\"st_button_normal_background_background_color\":\"#FFFFFF00\",\"st_button_hover_background_background_background\":\"classic\",\"st_button_hover_background_background_color\":\"#FFFFFF00\",\"st_container_padding_responsive_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_container_boxshadow_box_shadow_box_shadow_type\":\"yes\",\"st_container_boxshadow_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":15,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.1)\"},\"sg_icon_header\":{\"value\":\"icon icon-doctor\",\"library\":\"ekiticons\"},\"st_icon_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_icon_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"st_icon_height_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_width_responsive_mobile\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"st_icon_size_responsive\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"sg_icon_type\":\"image\",\"st_background_overlay_hover_color_background_background\":\"classic\",\"st_background_hover_direction\":\"bottom\",\"st_content_description_color_responsive\":\"#7A7A7A\",\"st_icon_color_responsive\":\"#61CE70\",\"st_button_normal_text_color_responsive\":\"#E17141\",\"st_container_background_background_position\":\"center center\",\"st_container_hover_background_background_background\":\"classic\",\"st_container_hover_background_background_position\":\"center center\",\"st_container_hover_background_background_size\":\"cover\",\"st_background_overlay_color_background_background\":\"classic\"},\"elements\":[],\"widgetType\":\"jkit_icon_box\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3efd3de7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"middle\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"2d0914d3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.999000000000002,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"60\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3df3530d\",\"elType\":\"widget\",\"settings\":{\"title\":\"PORTRAIT of Healthcare Industry\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInLeft\",\"animation_duration\":\"slow\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c20f3f2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Four Major Pieces Of Long Term Success Of Your Health Care Business\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=secondary\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7674569\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"1c74c0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d055ab\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Strong-Internet-Presence.webp\",\"id\":201,\"size\":\"\",\"alt\":\"Strong Internet Presence\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7592da1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Strong Internet Presence\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"8927e35\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"9ebd4a8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Outstanding-Online-Reputation.webp\",\"id\":202,\"size\":\"\",\"alt\":\"Outstanding Online Reputation\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4c8deab\",\"elType\":\"widget\",\"settings\":{\"title\":\"Outstanding Online Reputation\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"a8963c5\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"-18\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"afeb239\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f8da57f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Solidified-Patient-Experience.webp\",\"id\":203,\"size\":\"\",\"alt\":\"Solidified Patient Experience\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"15\",\"bottom\":\"15\",\"left\":\"15\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"315870c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Solidified Patient Experience\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"b2ec96f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"919ffc2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Satisfied-Loyal-Patient-Base.webp\",\"id\":204,\"size\":\"\",\"alt\":\"Satisfied & Loyal Patient Base\",\"source\":\"library\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"dcf599f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Satisfied & Loyal Patient Base\",\"__globals__\":{\"typography_typography\":\"\",\"title_color\":\"\"},\"title_color\":\"#06685F\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Playfair Display\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"3e5f5253\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.000999999999998,\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2873d4ff\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":206,\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/Heathcare-Industry-Potrait.webp\",\"alt\":\"Heathcare Industry Potrait\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"custom\",\"css_filters_saturate\":{\"unit\":\"px\",\"size\":116,\"sizes\":[]},\"css_filters_hue\":{\"unit\":\"px\",\"size\":358,\"sizes\":[]},\"image_custom_dimension\":{\"width\":\"820\",\"height\":\"1024\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"align_tablet\":\"left\",\"width_tablet\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6258dfbb\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"80\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"2a289710\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"419071d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Cases Studies\",\"header_size\":\"h5\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=997f697\",\"title_color\":\"\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"align\":\"center\",\"title_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f8a003d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Successful Deliverables\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2255b7f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#747474\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2d6e528c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"gap\":\"no\",\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"235afe66\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":40},\"elements\":[{\"id\":\"4cc4c3d8\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"67\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/therapy-session-in-the-AK6AHJU.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Couple Problem Solving\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7b3bedb2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_tablet\":50,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":120},\"elements\":[{\"id\":\"74007e5\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"83\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Depression Problem\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true},{\"id\":\"7766caa8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"animation_delay\":160},\"elements\":[{\"id\":\"366d61a6\",\"elType\":\"widget\",\"settings\":{\"sg_member_style\":\"overlay\",\"sg_member_image\":{\"id\":\"89\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/senior-patient-talking-to-psychologist.jpg\"},\"sg_member_image_size_imagesize_size\":\"full\",\"sg_member_name\":\"Individual Coaching\",\"sg_member_position\":\"\",\"sg_member_description\":\"Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore\",\"sg_social_icon\":[{\"sg_social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Facebook\",\"sg_social_link\":{\"url\":\"https:\\/\\/facebook.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"d89a5bf\"},{\"sg_social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Twitter\",\"sg_social_link\":{\"url\":\"https:\\/\\/twitter.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"dd076b7\"},{\"sg_social_icon\":{\"value\":\"fab fa-pinterest-p\",\"library\":\"fa-brands\"},\"sg_social_label\":\"Pinterest\",\"sg_social_link\":{\"url\":\"https:\\/\\/pinterest.com\",\"is_external\":false,\"nofollow\":false,\"custom_attributes\":\"\"},\"_id\":\"6e35c8d\"}],\"sg_popup_phone\":\"+1 (234) 567-879\",\"sg_popup_email\":\"info@example.com\",\"sg_member_overlay_content_alignment\":\"bottom\",\"sg_member_show_description\":\"yes\",\"sg_social_show\":\"\",\"st_content_alignment_responsive\":\"left\",\"st_content_content_padding_responsive\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"30\",\"bottom\":\"30\",\"left\":\"30\",\"isLinked\":true},\"st_content_hover_background_background_background\":\"classic\",\"st_content_hover_background_background_color\":\"#E17141EB\",\"st_name_normal_color_responsive\":\"#FFFFFF\",\"st_name_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_position_margin_bottom_responsive\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"st_description_normal_color_responsive\":\"#FFFFFF\",\"__globals__\":{\"st_content_hover_background_background_color\":\"\",\"st_name_typography_content_typography_typography\":\"globals\\/typography?id=7f517b0\",\"st_position_typography_content_typography_typography\":\"\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\"},\"st_position_normal_color_responsive\":\"#FFFFFF\",\"st_image_height_responsive\":{\"unit\":\"px\",\"size\":380,\"sizes\":[]},\"st_image_height_responsive_mobile\":{\"unit\":\"px\",\"size\":280,\"sizes\":[]},\"sg_member_html_tag\":\"h3\"},\"elements\":[],\"widgetType\":\"jkit_team\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"6d23bdc9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"content_position\":\"middle\",\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"f2a9918\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fc92b74\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco \",\"align_tablet\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"124d9140\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"flex-end\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"_inline_size_tablet\":100,\"align_tablet\":\"center\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[{\"id\":\"792fb6ba\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Cases\",\"align\":\"left\",\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a892a9f\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_element_width\":\"initial\",\"background_color\":\"#EC95A6\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"7d1482cc\",\"elType\":\"widget\",\"settings\":{\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"view\":\"framed\",\"align\":\"left\",\"size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_z_index\":1,\"_element_width\":\"auto\",\"__globals__\":{\"secondary_color\":\"\",\"primary_color\":\"\"},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"primary_color\":\"#FFFFFF\",\"secondary_color\":\"#06685F\",\"icon_padding\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon\"},{\"id\":\"5c1677e5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"75\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/image.jpg\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":44,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-45\",\"isLinked\":false},\"_z_index\":0,\"_element_width\":\"auto\",\"__globals__\":{\"image_border_color\":\"globals\\/colors?id=accent\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"align_mobile\":\"left\",\"_element_width_mobile\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"743ae66d\",\"elType\":\"widget\",\"settings\":{\"sg_title_before\":\"(+021) 2336 278\",\"sg_title_focused\":\"\",\"sg_subtitle_heading\":\"Lorem ipsum dolor set amet\",\"sg_description_enable\":\"yes\",\"sg_description\":\"Call 24HR \\/ 7Days\",\"sg_shadow_content\":\"news\",\"sg_separator_enable\":\"\",\"st_title_margin_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-12\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"-5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"_element_width\":\"auto\",\"__globals__\":{\"st_title_color_responsive\":\"globals\\/colors?id=primary\",\"st_description_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_description_color_responsive\":\"globals\\/colors?id=text\",\"st_title_typography_content_typography_typography\":\"globals\\/typography?id=b31596a\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-59\",\"isLinked\":false},\"st_title_color_responsive\":\"#06685F\",\"st_description_color_responsive\":\"#7A7A7A\",\"sg_title_text\":\"Trending Stories And Another Stories\"},\"elements\":[],\"widgetType\":\"jkit_heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"26fe42d7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"id\":\"87\",\"url\":\"https:\\/\\/healthcaremarketing.in8.cdn-alpha.com\\/wp-content\\/uploads\\/2023\\/07\\/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg\"},\"background_position\":\"center center\",\"background_attachment\":\"fixed\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.69999999999999996,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]}},\"elements\":[{\"id\":\"caf423c\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"18f943e3\",\"elType\":\"widget\",\"settings\":{\"title\":\"We Provide Essential Services For Upliftment Of Your Brand\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4b416bd\"},\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"fadeInUp\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6d186798\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Bring to us what troubles you and let us find the solution for you.<\\/p>\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"25\",\"isLinked\":false},\"align\":\"center\",\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1167eea7\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"text_padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"40\",\"bottom\":\"20\",\"left\":\"40\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\",\"typography_typography\":\"globals\\/typography?id=a48ae84\"},\"hover_animation\":\"float\",\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"32\",\"bottom\":\"18\",\"left\":\"32\",\"isLinked\":false},\"link\":{\"url\":\"#form\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":\"\"}],\"isInner\":\"\"},{\"id\":\"7128a812\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"10\",\"bottom\":\"40\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"490e13cf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"align\":\"center\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"52c40f92\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Blog\",\"header_size\":\"h5\",\"align\":\"center\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=997f697\"},\"_animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"title_color\":\"#E17141\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3af0182b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lates News and Articles\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=secondary\"},\"align\":\"center\",\"title_color\":\"#06685F\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3baf76d8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua\",\"_padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"26\",\"bottom\":\"0\",\"left\":\"26\",\"isLinked\":false},\"_element_custom_width\":{\"unit\":\"px\",\"size\":600,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"_padding_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3a7f27c0\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"gap\":\"no\",\"animation\":\"fadeInUp\",\"animation_duration\":\"slow\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"24d3f0f8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"animation_duration\":\"slow\",\"_inline_size_tablet\":100,\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"431f7e79\",\"elType\":\"widget\",\"settings\":{\"sg_content_postblock_type\":\"type-2\",\"sg_content_image_size_imagesize_size\":\"full\",\"sg_content_column_responsive\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"sg_content_excerpt_more\":\"...\",\"sg_content_readmore_text\":\"Read More\",\"sg_content_comment_enable\":\"\",\"sg_content_meta_enable\":\"\",\"sg_content_meta_author_enable\":\"\",\"sg_content_meta_author_by_text\":\"by\",\"sg_content_meta_date_format_custom\":\"F j, Y\",\"pagination_loadmore_text\":\"Load More\",\"pagination_loading_text\":\"Loading...\",\"st_category_margin_responsive\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_padding_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"st_readmore_normal_background_background_background\":\"classic\",\"st_readmore_normal_background_background_color\":\"#FFFFFF00\",\"st_nocontent_text\":\"No Content Available\",\"__globals__\":{\"st_excerpt_typography_content_typography_typography\":\"globals\\/typography?id=text\",\"st_excerpt_color_responsive\":\"globals\\/colors?id=text\",\"st_readmore_normal_color_responsive\":\"\",\"st_category_color_responsive\":\"globals\\/colors?id=text\",\"st_title_normal_typography_content_typography_typography\":\"globals\\/typography?id=01acdab\",\"st_readmore_typography_content_typography_typography\":\"globals\\/typography?id=a892a9f\",\"st_category_typography_content_typography_typography\":\"globals\\/typography?id=7f7fd94\",\"st_title_normal_color_responsive\":\"globals\\/colors?id=primary\"},\"sg_content_excerpt_length\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"st_thumbnail_border_radius_responsive\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_border_radius_responsive_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"st_thumbnail_container_height_responsive_tablet\":{\"unit\":\"px\",\"size\":420,\"sizes\":[]},\"st_thumbnail_container_height_responsive_mobile\":{\"unit\":\"px\",\"size\":210,\"sizes\":[]},\"st_category_color_responsive\":\"#7A7A7A\",\"st_excerpt_color_responsive\":\"#7A7A7A\",\"st_readmore_normal_color_responsive\":\"#E17141\",\"pagination_prev_text\":\"Previous\",\"pagination_next_text\":\"Next\"},\"elements\":[],\"widgetType\":\"jkit_post_block\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1394,273,'_elementor_page_assets','a:1:{s:6:\"styles\";a:35:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";i:5;s:12:\"e-animations\";i:6;s:12:\"e-animations\";i:7;s:12:\"e-animations\";i:8;s:12:\"e-animations\";i:9;s:12:\"e-animations\";i:10;s:12:\"e-animations\";i:11;s:12:\"e-animations\";i:12;s:12:\"e-animations\";i:13;s:12:\"e-animations\";i:14;s:12:\"e-animations\";i:15;s:12:\"e-animations\";i:16;s:12:\"e-animations\";i:17;s:12:\"e-animations\";i:18;s:12:\"e-animations\";i:19;s:12:\"e-animations\";i:20;s:12:\"e-animations\";i:21;s:12:\"e-animations\";i:22;s:12:\"e-animations\";i:23;s:12:\"e-animations\";i:24;s:12:\"e-animations\";i:25;s:12:\"e-animations\";i:26;s:12:\"e-animations\";i:27;s:12:\"e-animations\";i:28;s:12:\"e-animations\";i:29;s:12:\"e-animations\";i:30;s:12:\"e-animations\";i:31;s:12:\"e-animations\";i:32;s:12:\"e-animations\";i:33;s:12:\"e-animations\";i:34;s:12:\"e-animations\";}}'),(1411,274,'_edit_last','1'),(1412,274,'_edit_lock','1689750941:1'),(1413,274,'_wp_page_template','elementor_canvas'),(1414,274,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(1415,274,'ehf_target_exclude_locations','a:0:{}'),(1416,274,'ehf_target_user_roles','a:1:{i:0;s:3:\"all\";}'),(1417,274,'ehf_template_type','type_header'),(1418,274,'_elementor_edit_mode','builder'),(1419,274,'_elementor_template_type','wp-post'),(1420,274,'_elementor_version','3.14.1'),(1424,274,'ekit_post_views_count','2'),(1435,277,'_wp_page_template','elementor_header_footer'),(1436,277,'_elementor_edit_mode','builder'),(1437,277,'_elementor_template_type','wp-post'),(1438,277,'_elementor_version','3.14.1'),(1439,278,'_wp_page_template','elementor_header_footer'),(1440,278,'_elementor_edit_mode','builder'),(1441,278,'_elementor_template_type','wp-post'),(1442,278,'_elementor_version','3.14.1'),(1443,274,'_elementor_data','[{\"id\":\"69a381dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_position\":\"middle\",\"z_index\":2,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"__globals__\":{\"jet_sticky_section_sticky_background_color\":\"\",\"background_color\":\"\"},\"jet_sticky_section_sticky_z_index\":10,\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-110\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"z_index_tablet\":7,\"jet_sticky_section_sticky_background_color\":\"#141414\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#01221F\",\"background_background\":\"classic\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"layout\":\"full_width\",\"border_border\":\"solid\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#01221F\"},\"elements\":[{\"id\":\"3a4248d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.916,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_mobile\":30,\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1180b32f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/Health-Cloud-Logo.webp\",\"alt\":\"Health-Cloud-Logo\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":93}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"323132e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":66.200999999999993,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":5,\"_inline_size_tablet\":70,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"isInner\":false},{\"id\":\"4da5df50\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.523,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_mobile\":50,\"_inline_size_tablet\":30,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"dfcecef\",\"elType\":\"widget\",\"settings\":{\"text\":\"93156 66436\",\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"icon icon-phone-call1\",\"library\":\"ekiticons\"},\"link\":{\"url\":\"tel: +91 93156 66436\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1444,279,'_wp_page_template','elementor_canvas'),(1445,279,'_elementor_edit_mode','builder'),(1446,279,'_elementor_template_type','wp-post'),(1447,279,'_elementor_version','3.14.1'),(1448,279,'_elementor_data','[{\"id\":\"69a381dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_position\":\"middle\",\"z_index\":2,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"__globals__\":{\"jet_sticky_section_sticky_background_color\":\"\",\"background_color\":\"\"},\"jet_sticky_section_sticky_z_index\":10,\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-110\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"z_index_tablet\":7,\"jet_sticky_section_sticky_background_color\":\"#141414\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#01221F\",\"background_background\":\"classic\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"layout\":\"full_width\",\"border_border\":\"solid\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#01221F\"},\"elements\":[{\"id\":\"3a4248d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.916,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_mobile\":30,\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1180b32f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/Health-Cloud-Logo.webp\",\"alt\":\"Health-Cloud-Logo\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":93}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"323132e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":66.200999999999993,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":5,\"_inline_size_tablet\":70,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"isInner\":false},{\"id\":\"4da5df50\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.523,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_mobile\":50,\"_inline_size_tablet\":30,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"dfcecef\",\"elType\":\"widget\",\"settings\":{\"text\":\"93156 66436\",\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"icon icon-phone-call1\",\"library\":\"ekiticons\"},\"link\":{\"url\":\"tel: +91 93156 66436\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1449,274,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1451,281,'_wp_page_template','elementor_canvas'),(1452,281,'_elementor_edit_mode','builder'),(1453,281,'_elementor_template_type','wp-post'),(1454,281,'_elementor_version','3.14.1'),(1455,281,'_elementor_data','[{\"id\":\"69a381dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_position\":\"middle\",\"z_index\":2,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"__globals__\":{\"jet_sticky_section_sticky_background_color\":\"\",\"background_color\":\"\"},\"jet_sticky_section_sticky_z_index\":10,\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-110\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"z_index_tablet\":7,\"jet_sticky_section_sticky_background_color\":\"#141414\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#01221F\",\"background_background\":\"classic\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"layout\":\"full_width\",\"border_border\":\"solid\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#01221F\"},\"elements\":[{\"id\":\"3a4248d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.916,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_mobile\":30,\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1180b32f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/Health-Cloud-Logo.webp\",\"alt\":\"Health-Cloud-Logo\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":93}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"323132e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":66.200999999999993,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":5,\"_inline_size_tablet\":70,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"isInner\":false},{\"id\":\"4da5df50\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.523,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_mobile\":50,\"_inline_size_tablet\":30,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"dfcecef\",\"elType\":\"widget\",\"settings\":{\"text\":\"93156 66436\",\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"icon icon-phone-call1\",\"library\":\"ekiticons\"},\"link\":{\"url\":\"tel: +91 93156 66436\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1456,281,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1458,282,'_wp_page_template','elementor_canvas'),(1459,282,'_elementor_edit_mode','builder'),(1460,282,'_elementor_template_type','wp-post'),(1461,282,'_elementor_version','3.14.1'),(1462,282,'_elementor_data','[{\"id\":\"69a381dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_position\":\"middle\",\"z_index\":2,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"__globals__\":{\"jet_sticky_section_sticky_background_color\":\"\",\"background_color\":\"\"},\"jet_sticky_section_sticky_z_index\":10,\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-110\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"z_index_tablet\":7,\"jet_sticky_section_sticky_background_color\":\"#141414\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#01221F\",\"background_background\":\"classic\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"layout\":\"full_width\",\"border_border\":\"solid\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#01221F\"},\"elements\":[{\"id\":\"3a4248d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.916,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_mobile\":30,\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1180b32f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/Health-Cloud-Logo.webp\",\"alt\":\"Health-Cloud-Logo\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":93}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"323132e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":66.200999999999993,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":5,\"_inline_size_tablet\":70,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"isInner\":false},{\"id\":\"4da5df50\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.523,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_mobile\":50,\"_inline_size_tablet\":30,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"dfcecef\",\"elType\":\"widget\",\"settings\":{\"text\":\"93156 66436\",\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"icon icon-phone-call1\",\"library\":\"ekiticons\"},\"link\":{\"url\":\"tel: +91 93156 66436\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1463,282,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1465,283,'_wp_page_template','elementor_canvas'),(1466,283,'_elementor_edit_mode','builder'),(1467,283,'_elementor_template_type','wp-post'),(1468,283,'_elementor_version','3.14.1'),(1469,283,'_elementor_data','[{\"id\":\"69a381dc\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"content_position\":\"middle\",\"z_index\":2,\"jet_sticky_section_sticky\":\"yes\",\"jet_sticky_section_sticky_background_background\":\"classic\",\"__globals__\":{\"jet_sticky_section_sticky_background_color\":\"\",\"background_color\":\"\"},\"jet_sticky_section_sticky_z_index\":10,\"gap\":\"no\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-110\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"z_index_tablet\":7,\"jet_sticky_section_sticky_background_color\":\"#141414\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"border_color\":\"#01221F\",\"background_background\":\"classic\",\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"layout\":\"full_width\",\"border_border\":\"solid\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-80\",\"left\":0,\"isLinked\":false},\"border_width_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-100\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#01221F\"},\"elements\":[{\"id\":\"3a4248d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.916,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_mobile\":30,\"_inline_size_tablet\":30,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1180b32f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/Health-Cloud-Logo.webp\",\"alt\":\"Health-Cloud-Logo\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":70,\"sizes\":[]},\"width_mobile\":{\"unit\":\"%\",\"size\":80,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"_element_width_mobile\":\"initial\",\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":93}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"323132e2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":66.200999999999993,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":5,\"_inline_size_tablet\":70,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"isInner\":false},{\"id\":\"4da5df50\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":18.523,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"_inline_size_mobile\":50,\"_inline_size_tablet\":30,\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-phone\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"dfcecef\",\"elType\":\"widget\",\"settings\":{\"text\":\"93156 66436\",\"align\":\"center\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"__globals__\":{\"button_text_color\":\"\",\"border_color\":\"\",\"typography_typography\":\"\",\"background_color\":\"\",\"button_background_hover_color\":\"\",\"hover_color\":\"\"},\"button_text_color\":\"#FFFFFF\",\"border_color\":\"#6EC1E4\",\"hover_animation\":\"float\",\"button_hover_border_color\":\"#6EC1E4\",\"text_padding_mobile\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"30\",\"bottom\":\"15\",\"left\":\"30\",\"isLinked\":false},\"background_color\":\"#EC95A6\",\"animation_duration\":\"slow\",\"align_tablet\":\"right\",\"align_mobile\":\"center\",\"selected_icon\":{\"value\":\"icon icon-phone-call1\",\"library\":\"ekiticons\"},\"link\":{\"url\":\"tel: +91 93156 66436\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"icon_indent\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"typography_typography\":\"custom\",\"typography_font_family\":\"Inter\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_text_transform\":\"uppercase\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":1.3,\"sizes\":[]},\"typography_word_spacing\":{\"unit\":\"em\",\"size\":\"\",\"sizes\":[]},\"button_background_hover_color\":\"#DD697E\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(1470,283,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1473,280,'_edit_last','1'),(1474,280,'_edit_lock','1689750786:1'),(1475,280,'_wp_page_template','elementor_canvas'),(1476,280,'ehf_target_include_locations','a:2:{s:4:\"rule\";a:1:{i:0;s:12:\"basic-global\";}s:8:\"specific\";a:0:{}}'),(1477,280,'ehf_target_exclude_locations','a:0:{}'),(1478,280,'ehf_target_user_roles','a:1:{i:0;s:3:\"all\";}'),(1479,280,'ehf_template_type','type_footer'),(1480,280,'_elementor_edit_mode','builder'),(1481,280,'_elementor_template_type','wp-post'),(1482,280,'_elementor_version','3.14.1'),(1484,280,'ekit_post_views_count','2'),(1493,286,'_wp_page_template','elementor_header_footer'),(1494,286,'_elementor_edit_mode','builder'),(1495,286,'_elementor_template_type','wp-post'),(1496,286,'_elementor_version','3.14.1'),(1497,287,'_wp_page_template','elementor_header_footer'),(1498,287,'_elementor_edit_mode','builder'),(1499,287,'_elementor_template_type','wp-post'),(1500,287,'_elementor_version','3.14.1'),(1501,280,'_elementor_data','[{\"id\":\"2a652bd2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#001312\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d380c8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c0e9dd0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ef7a38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":29.062999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"50\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_color\":\"#022E2C\",\"__globals__\":{\"background_color\":\"\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"45a7806a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/Health-Cloud-Logo.webp\",\"alt\":\"Health-Cloud-Logo\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":76.066000000000003},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":271.54700000000003}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"94b3590\",\"elType\":\"widget\",\"settings\":{\"html\":\"                        <script src=\\\"https:\\/\\/static.elfsight.com\\/platform\\/platform.js\\\" data-use-service-core defer><\\/script>\\n<div class=\\\"elfsight-app-cd7ae0f4-2f9f-4906-8b6f-9ea34df2b167\\\"><\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"7f02d05a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"info@whatthehell.co\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\"},{\"text\":\"93156 66436\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"5be22c40\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":23.568000000000001,\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e55215c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"title_color\":\"#FFFFFF\",\"header_size\":\"h4\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18d68b78\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Cases\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"23e9052\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"1d3fc9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":17.280000000000001,\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a533a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"header_size\":\"h4\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e0e09e1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Disclaimer\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"},{\"text\":\"Credits\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"7a933100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":30.088999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1ae351\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13f2353a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"37640353\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3fb16302\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"58287972\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"27a20b2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 All rights reserved to <a href=\\\"https:\\/\\/ideascloud.in\\/\\\">Ideas Cloud<\\/a><\\/p>\",\"align\":\"center\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7f7fd94\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1502,288,'_wp_page_template','elementor_canvas'),(1503,288,'_elementor_edit_mode','builder'),(1504,288,'_elementor_template_type','wp-post'),(1505,288,'_elementor_version','3.14.1'),(1506,288,'_elementor_data','[{\"id\":\"2a652bd2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#001312\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d380c8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c0e9dd0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ef7a38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":29.062999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"50\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_color\":\"#022E2C\",\"__globals__\":{\"background_color\":\"\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"45a7806a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/Health-Cloud-Logo.webp\",\"alt\":\"Health-Cloud-Logo\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":76.066000000000003}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"94b3590\",\"elType\":\"widget\",\"settings\":{\"html\":\"                        <script src=\\\"https:\\/\\/static.elfsight.com\\/platform\\/platform.js\\\" data-use-service-core defer><\\/script>\\n<div class=\\\"elfsight-app-cd7ae0f4-2f9f-4906-8b6f-9ea34df2b167\\\"><\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"7f02d05a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"info@whatthehell.co\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\"},{\"text\":\"93156 66436\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"5be22c40\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":23.568000000000001,\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e55215c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"title_color\":\"#FFFFFF\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18d68b78\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Cases\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"23e9052\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"1d3fc9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":17.280000000000001,\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a533a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e0e09e1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Disclaimer\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"},{\"text\":\"Credits\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"7a933100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":30.088999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e6ad707\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e71a3d2\",\"elType\":\"widget\",\"settings\":{\"ekit_mail_chimp_email_address_placeholder\":\"Your Email Address\",\"ekit_mail_chimp_email_icon_show\":\"\",\"ekit_mail_chimp_submit\":\"Subscribe\",\"ekit_mail_chimp_submit_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_mail_chimp_success_message\":\"Successfully listed this email\",\"ekit_mail_chimp_input_style_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"ekit_mail_chimp_input_style_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_mail_chimp_input_style_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":false},\"ekit_mail_chimp_input_style_width__switch\":\"yes\",\"ekit_mail_chimp_input_style_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_mail_chimp_input_style_margin_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_mail_chimp_input_style_placeholder_color\":\"#B7B7B7\",\"ekit_mail_chimp_button_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"ekit_mail_chimp_button_border_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_style_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"-120\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_mail_chimp_button_background_hover_background\":\"classic\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_input_style_placeholder_font_size_mobile\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_mail_chimp_input_style_background_background\":\"classic\",\"__globals__\":{\"ekit_mail_chimp_input_style_background_color\":\"\",\"ekit_mail_chimp_button_background_color\":\"globals\\/colors?id=accent\",\"ekit_mail_chimp_button_color\":\"\",\"ekit_mail_chimp_button_border_color\":\"\",\"ekit_mail_chimp_button_typography_typography\":\"globals\\/typography?id=a892a9f\",\"ekit_mail_chimp_input_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_mail_chimp_input_icon_background_background\":\"classic\",\"ekit_mail_chimp_input_label_typography_typography\":\"custom\",\"ekit_mail_chimp_input_label_typography_font_family\":\"Inter\",\"ekit_mail_chimp_input_label_typography_font_weight\":\"600\",\"ekit_mail_chimp_section_form_name_show\":\"\",\"ekit_mail_chimp_input_style_margin_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_mail_chimp_button_border_color\":\"#2843CF\",\"ekit_mail_chimp_submit_icon_show\":\"\",\"ekit_mail_chimp_button_style_use_width_height\":\"yes\",\"ekit_mail_chimp_button_width\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"ekit_mail_chimp_input_style_border_border\":\"solid\",\"ekit_mail_chimp_opt_in_success_message\":\"Please check your mail and confirm subscribe\"},\"elements\":[],\"widgetType\":\"elementskit-mail-chimp\"},{\"id\":\"3f1ae351\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13f2353a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"37640353\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3fb16302\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"799e153e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"5364726f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Psychology & Counseling Template Kit by Baliniz\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7f7fd94\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"58287972\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"27a20b2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 All rights reserved.\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7f7fd94\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1507,280,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1508,289,'_wp_page_template','elementor_canvas'),(1509,289,'_elementor_edit_mode','builder'),(1510,289,'_elementor_template_type','wp-post'),(1511,289,'_elementor_version','3.14.1'),(1512,289,'_elementor_data','[{\"id\":\"2a652bd2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#001312\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d380c8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c0e9dd0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ef7a38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":29.062999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"50\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_color\":\"#022E2C\",\"__globals__\":{\"background_color\":\"\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"45a7806a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/Health-Cloud-Logo.webp\",\"alt\":\"Health-Cloud-Logo\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":76.066000000000003}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"94b3590\",\"elType\":\"widget\",\"settings\":{\"html\":\"                        <script src=\\\"https:\\/\\/static.elfsight.com\\/platform\\/platform.js\\\" data-use-service-core defer><\\/script>\\n<div class=\\\"elfsight-app-cd7ae0f4-2f9f-4906-8b6f-9ea34df2b167\\\"><\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"7f02d05a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"info@whatthehell.co\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\"},{\"text\":\"93156 66436\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"5be22c40\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":23.568000000000001,\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e55215c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"title_color\":\"#FFFFFF\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18d68b78\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Cases\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"23e9052\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"1d3fc9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":17.280000000000001,\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a533a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e0e09e1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Disclaimer\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"},{\"text\":\"Credits\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"7a933100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":30.088999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e6ad707\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e71a3d2\",\"elType\":\"widget\",\"settings\":{\"ekit_mail_chimp_email_address_placeholder\":\"Your Email Address\",\"ekit_mail_chimp_email_icon_show\":\"\",\"ekit_mail_chimp_submit\":\"Subscribe\",\"ekit_mail_chimp_submit_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_mail_chimp_success_message\":\"Successfully listed this email\",\"ekit_mail_chimp_input_style_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"ekit_mail_chimp_input_style_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_mail_chimp_input_style_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":false},\"ekit_mail_chimp_input_style_width__switch\":\"yes\",\"ekit_mail_chimp_input_style_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_mail_chimp_input_style_margin_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_mail_chimp_input_style_placeholder_color\":\"#B7B7B7\",\"ekit_mail_chimp_button_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"ekit_mail_chimp_button_border_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_style_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"-120\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_mail_chimp_button_background_hover_background\":\"classic\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_input_style_placeholder_font_size_mobile\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_mail_chimp_input_style_background_background\":\"classic\",\"__globals__\":{\"ekit_mail_chimp_input_style_background_color\":\"\",\"ekit_mail_chimp_button_background_color\":\"globals\\/colors?id=accent\",\"ekit_mail_chimp_button_color\":\"\",\"ekit_mail_chimp_button_border_color\":\"\",\"ekit_mail_chimp_button_typography_typography\":\"globals\\/typography?id=a892a9f\",\"ekit_mail_chimp_input_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_mail_chimp_input_icon_background_background\":\"classic\",\"ekit_mail_chimp_input_label_typography_typography\":\"custom\",\"ekit_mail_chimp_input_label_typography_font_family\":\"Inter\",\"ekit_mail_chimp_input_label_typography_font_weight\":\"600\",\"ekit_mail_chimp_section_form_name_show\":\"\",\"ekit_mail_chimp_input_style_margin_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_mail_chimp_button_border_color\":\"#2843CF\",\"ekit_mail_chimp_submit_icon_show\":\"\",\"ekit_mail_chimp_button_style_use_width_height\":\"yes\",\"ekit_mail_chimp_button_width\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"ekit_mail_chimp_input_style_border_border\":\"solid\",\"ekit_mail_chimp_opt_in_success_message\":\"Please check your mail and confirm subscribe\"},\"elements\":[],\"widgetType\":\"elementskit-mail-chimp\"},{\"id\":\"3f1ae351\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13f2353a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"37640353\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3fb16302\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"799e153e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"5364726f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Psychology & Counseling Template Kit by Baliniz\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7f7fd94\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"58287972\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"27a20b2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 All rights reserved.\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7f7fd94\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1513,289,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1514,290,'_wp_page_template','elementor_canvas'),(1515,290,'_elementor_edit_mode','builder'),(1516,290,'_elementor_template_type','wp-post'),(1517,290,'_elementor_version','3.14.1'),(1518,290,'_elementor_data','[{\"id\":\"2a652bd2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#001312\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d380c8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c0e9dd0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ef7a38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":29.062999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"50\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_color\":\"#022E2C\",\"__globals__\":{\"background_color\":\"\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"45a7806a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/Health-Cloud-Logo.webp\",\"alt\":\"Health-Cloud-Logo\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":76.066000000000003}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"94b3590\",\"elType\":\"widget\",\"settings\":{\"html\":\"                        <script src=\\\"https:\\/\\/static.elfsight.com\\/platform\\/platform.js\\\" data-use-service-core defer><\\/script>\\n<div class=\\\"elfsight-app-cd7ae0f4-2f9f-4906-8b6f-9ea34df2b167\\\"><\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"7f02d05a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"info@whatthehell.co\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\"},{\"text\":\"93156 66436\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"5be22c40\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":23.568000000000001,\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e55215c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"title_color\":\"#FFFFFF\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18d68b78\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Cases\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"23e9052\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"1d3fc9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":17.280000000000001,\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a533a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e0e09e1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Disclaimer\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"},{\"text\":\"Credits\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"7a933100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":30.088999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e6ad707\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e71a3d2\",\"elType\":\"widget\",\"settings\":{\"ekit_mail_chimp_email_address_placeholder\":\"Your Email Address\",\"ekit_mail_chimp_email_icon_show\":\"\",\"ekit_mail_chimp_submit\":\"Subscribe\",\"ekit_mail_chimp_submit_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_mail_chimp_success_message\":\"Successfully listed this email\",\"ekit_mail_chimp_input_style_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"ekit_mail_chimp_input_style_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_mail_chimp_input_style_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":false},\"ekit_mail_chimp_input_style_width__switch\":\"yes\",\"ekit_mail_chimp_input_style_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_mail_chimp_input_style_margin_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_mail_chimp_input_style_placeholder_color\":\"#B7B7B7\",\"ekit_mail_chimp_button_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"ekit_mail_chimp_button_border_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_style_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"-120\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_mail_chimp_button_background_hover_background\":\"classic\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_input_style_placeholder_font_size_mobile\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_mail_chimp_input_style_background_background\":\"classic\",\"__globals__\":{\"ekit_mail_chimp_input_style_background_color\":\"\",\"ekit_mail_chimp_button_background_color\":\"globals\\/colors?id=accent\",\"ekit_mail_chimp_button_color\":\"\",\"ekit_mail_chimp_button_border_color\":\"\",\"ekit_mail_chimp_button_typography_typography\":\"globals\\/typography?id=a892a9f\",\"ekit_mail_chimp_input_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_mail_chimp_input_icon_background_background\":\"classic\",\"ekit_mail_chimp_input_label_typography_typography\":\"custom\",\"ekit_mail_chimp_input_label_typography_font_family\":\"Inter\",\"ekit_mail_chimp_input_label_typography_font_weight\":\"600\",\"ekit_mail_chimp_section_form_name_show\":\"\",\"ekit_mail_chimp_input_style_margin_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_mail_chimp_button_border_color\":\"#2843CF\",\"ekit_mail_chimp_submit_icon_show\":\"\",\"ekit_mail_chimp_button_style_use_width_height\":\"yes\",\"ekit_mail_chimp_button_width\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"ekit_mail_chimp_input_style_border_border\":\"solid\",\"ekit_mail_chimp_opt_in_success_message\":\"Please check your mail and confirm subscribe\"},\"elements\":[],\"widgetType\":\"elementskit-mail-chimp\"},{\"id\":\"3f1ae351\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13f2353a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"37640353\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3fb16302\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"799e153e\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"5364726f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Psychology & Counseling Template Kit by Baliniz\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7f7fd94\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"},{\"id\":\"58287972\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"]},\"elements\":[{\"id\":\"27a20b2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Copyright \\u00a9 2021 All rights reserved.\",\"align\":\"right\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7f7fd94\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1519,290,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1520,291,'_wp_page_template','elementor_canvas'),(1521,291,'_elementor_edit_mode','builder'),(1522,291,'_elementor_template_type','wp-post'),(1523,291,'_elementor_version','3.14.1'),(1524,291,'_elementor_data','[{\"id\":\"2a652bd2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#001312\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d380c8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c0e9dd0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ef7a38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":29.062999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"50\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_color\":\"#022E2C\",\"__globals__\":{\"background_color\":\"\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"45a7806a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/Health-Cloud-Logo.webp\",\"alt\":\"Health-Cloud-Logo\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":76.066000000000003}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"94b3590\",\"elType\":\"widget\",\"settings\":{\"html\":\"                        <script src=\\\"https:\\/\\/static.elfsight.com\\/platform\\/platform.js\\\" data-use-service-core defer><\\/script>\\n<div class=\\\"elfsight-app-cd7ae0f4-2f9f-4906-8b6f-9ea34df2b167\\\"><\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"7f02d05a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"info@whatthehell.co\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\"},{\"text\":\"93156 66436\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"5be22c40\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":23.568000000000001,\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e55215c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"title_color\":\"#FFFFFF\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18d68b78\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Cases\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"23e9052\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"1d3fc9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":17.280000000000001,\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a533a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e0e09e1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Disclaimer\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"},{\"text\":\"Credits\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"7a933100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":30.088999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e6ad707\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e71a3d2\",\"elType\":\"widget\",\"settings\":{\"ekit_mail_chimp_email_address_placeholder\":\"Your Email Address\",\"ekit_mail_chimp_email_icon_show\":\"\",\"ekit_mail_chimp_submit\":\"Subscribe\",\"ekit_mail_chimp_submit_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_mail_chimp_success_message\":\"Successfully listed this email\",\"ekit_mail_chimp_input_style_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"ekit_mail_chimp_input_style_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_mail_chimp_input_style_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":false},\"ekit_mail_chimp_input_style_width__switch\":\"yes\",\"ekit_mail_chimp_input_style_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_mail_chimp_input_style_margin_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_mail_chimp_input_style_placeholder_color\":\"#B7B7B7\",\"ekit_mail_chimp_button_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"ekit_mail_chimp_button_border_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_style_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"-120\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_mail_chimp_button_background_hover_background\":\"classic\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_input_style_placeholder_font_size_mobile\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_mail_chimp_input_style_background_background\":\"classic\",\"__globals__\":{\"ekit_mail_chimp_input_style_background_color\":\"\",\"ekit_mail_chimp_button_background_color\":\"globals\\/colors?id=accent\",\"ekit_mail_chimp_button_color\":\"\",\"ekit_mail_chimp_button_border_color\":\"\",\"ekit_mail_chimp_button_typography_typography\":\"globals\\/typography?id=a892a9f\",\"ekit_mail_chimp_input_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_mail_chimp_input_icon_background_background\":\"classic\",\"ekit_mail_chimp_input_label_typography_typography\":\"custom\",\"ekit_mail_chimp_input_label_typography_font_family\":\"Inter\",\"ekit_mail_chimp_input_label_typography_font_weight\":\"600\",\"ekit_mail_chimp_section_form_name_show\":\"\",\"ekit_mail_chimp_input_style_margin_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_mail_chimp_button_border_color\":\"#2843CF\",\"ekit_mail_chimp_submit_icon_show\":\"\",\"ekit_mail_chimp_button_style_use_width_height\":\"yes\",\"ekit_mail_chimp_button_width\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"ekit_mail_chimp_input_style_border_border\":\"solid\",\"ekit_mail_chimp_opt_in_success_message\":\"Please check your mail and confirm subscribe\"},\"elements\":[],\"widgetType\":\"elementskit-mail-chimp\"},{\"id\":\"3f1ae351\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13f2353a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"37640353\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3fb16302\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"58287972\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"27a20b2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 All rights reserved to <a href=\\\"https:\\/\\/ideascloud.in\\/\\\">Ideas Cloud<\\/a><\\/p>\",\"align\":\"center\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7f7fd94\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1525,291,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1526,292,'_wp_page_template','elementor_canvas'),(1527,292,'_elementor_edit_mode','builder'),(1528,292,'_elementor_template_type','wp-post'),(1529,292,'_elementor_version','3.14.1'),(1530,292,'_elementor_data','[{\"id\":\"2a652bd2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#001312\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d380c8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c0e9dd0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ef7a38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":29.062999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"50\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_color\":\"#022E2C\",\"__globals__\":{\"background_color\":\"\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"45a7806a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/Health-Cloud-Logo.webp\",\"alt\":\"Health-Cloud-Logo\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":76.066000000000003}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"94b3590\",\"elType\":\"widget\",\"settings\":{\"html\":\"                        <script src=\\\"https:\\/\\/static.elfsight.com\\/platform\\/platform.js\\\" data-use-service-core defer><\\/script>\\n<div class=\\\"elfsight-app-cd7ae0f4-2f9f-4906-8b6f-9ea34df2b167\\\"><\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"7f02d05a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"info@whatthehell.co\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\"},{\"text\":\"93156 66436\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"5be22c40\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":23.568000000000001,\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e55215c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"title_color\":\"#FFFFFF\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18d68b78\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Cases\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"23e9052\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"1d3fc9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":17.280000000000001,\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a533a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e0e09e1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Disclaimer\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"},{\"text\":\"Credits\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"7a933100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":30.088999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e6ad707\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e71a3d2\",\"elType\":\"widget\",\"settings\":{\"ekit_mail_chimp_email_address_placeholder\":\"Your Email Address\",\"ekit_mail_chimp_email_icon_show\":\"\",\"ekit_mail_chimp_submit\":\"Subscribe\",\"ekit_mail_chimp_submit_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_mail_chimp_success_message\":\"Successfully listed this email\",\"ekit_mail_chimp_input_style_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"ekit_mail_chimp_input_style_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_mail_chimp_input_style_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":false},\"ekit_mail_chimp_input_style_width__switch\":\"yes\",\"ekit_mail_chimp_input_style_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_mail_chimp_input_style_margin_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_mail_chimp_input_style_placeholder_color\":\"#B7B7B7\",\"ekit_mail_chimp_button_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"ekit_mail_chimp_button_border_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_style_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"-120\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_mail_chimp_button_background_hover_background\":\"classic\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_input_style_placeholder_font_size_mobile\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_mail_chimp_input_style_background_background\":\"classic\",\"__globals__\":{\"ekit_mail_chimp_input_style_background_color\":\"\",\"ekit_mail_chimp_button_background_color\":\"globals\\/colors?id=accent\",\"ekit_mail_chimp_button_color\":\"\",\"ekit_mail_chimp_button_border_color\":\"\",\"ekit_mail_chimp_button_typography_typography\":\"globals\\/typography?id=a892a9f\",\"ekit_mail_chimp_input_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_mail_chimp_input_icon_background_background\":\"classic\",\"ekit_mail_chimp_input_label_typography_typography\":\"custom\",\"ekit_mail_chimp_input_label_typography_font_family\":\"Inter\",\"ekit_mail_chimp_input_label_typography_font_weight\":\"600\",\"ekit_mail_chimp_section_form_name_show\":\"\",\"ekit_mail_chimp_input_style_margin_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_mail_chimp_button_border_color\":\"#2843CF\",\"ekit_mail_chimp_submit_icon_show\":\"\",\"ekit_mail_chimp_button_style_use_width_height\":\"yes\",\"ekit_mail_chimp_button_width\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"ekit_mail_chimp_input_style_border_border\":\"solid\",\"ekit_mail_chimp_opt_in_success_message\":\"Please check your mail and confirm subscribe\"},\"elements\":[],\"widgetType\":\"elementskit-mail-chimp\"},{\"id\":\"3f1ae351\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13f2353a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"37640353\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3fb16302\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"58287972\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"27a20b2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 All rights reserved to <a href=\\\"https:\\/\\/ideascloud.in\\/\\\">Ideas Cloud<\\/a><\\/p>\",\"align\":\"center\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7f7fd94\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1531,292,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1532,293,'_wp_page_template','elementor_canvas'),(1533,293,'_elementor_edit_mode','builder'),(1534,293,'_elementor_template_type','wp-post'),(1535,293,'_elementor_version','3.14.1'),(1536,293,'_elementor_data','[{\"id\":\"2a652bd2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#001312\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d380c8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c0e9dd0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ef7a38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":29.062999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"50\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_color\":\"#022E2C\",\"__globals__\":{\"background_color\":\"\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"45a7806a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/Health-Cloud-Logo.webp\",\"alt\":\"Health-Cloud-Logo\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"_element_width\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":76.066000000000003}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"94b3590\",\"elType\":\"widget\",\"settings\":{\"html\":\"                        <script src=\\\"https:\\/\\/static.elfsight.com\\/platform\\/platform.js\\\" data-use-service-core defer><\\/script>\\n<div class=\\\"elfsight-app-cd7ae0f4-2f9f-4906-8b6f-9ea34df2b167\\\"><\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"7f02d05a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"info@whatthehell.co\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\"},{\"text\":\"93156 66436\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"5be22c40\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":23.568000000000001,\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e55215c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"title_color\":\"#FFFFFF\",\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18d68b78\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Cases\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"23e9052\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"1d3fc9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":17.280000000000001,\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a533a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e0e09e1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Disclaimer\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"},{\"text\":\"Credits\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"7a933100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":30.088999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4e6ad707\",\"elType\":\"widget\",\"settings\":{\"title\":\"Newsletter\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e71a3d2\",\"elType\":\"widget\",\"settings\":{\"ekit_mail_chimp_email_address_placeholder\":\"Your Email Address\",\"ekit_mail_chimp_email_icon_show\":\"\",\"ekit_mail_chimp_submit\":\"Subscribe\",\"ekit_mail_chimp_submit_icons\":{\"value\":\"\",\"library\":\"\"},\"ekit_mail_chimp_success_message\":\"Successfully listed this email\",\"ekit_mail_chimp_input_style_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"ekit_mail_chimp_input_style_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"ekit_mail_chimp_input_style_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"20\",\"bottom\":\"14\",\"left\":\"20\",\"isLinked\":false},\"ekit_mail_chimp_input_style_width__switch\":\"yes\",\"ekit_mail_chimp_input_style_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"ekit_mail_chimp_input_style_margin_right\":{\"unit\":\"px\",\"size\":\"0\",\"sizes\":[]},\"ekit_mail_chimp_input_style_placeholder_color\":\"#B7B7B7\",\"ekit_mail_chimp_button_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"ekit_mail_chimp_button_border_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_style_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"4\",\"left\":\"-120\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_background_background\":\"classic\",\"_margin\":{\"unit\":\"px\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_button_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"1\"},\"ekit_mail_chimp_button_background_hover_background\":\"classic\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"ekit_mail_chimp_input_style_placeholder_font_size_mobile\":{\"unit\":\"px\",\"size\":\"12\",\"sizes\":[]},\"ekit_mail_chimp_input_style_background_background\":\"classic\",\"__globals__\":{\"ekit_mail_chimp_input_style_background_color\":\"\",\"ekit_mail_chimp_button_background_color\":\"globals\\/colors?id=accent\",\"ekit_mail_chimp_button_color\":\"\",\"ekit_mail_chimp_button_border_color\":\"\",\"ekit_mail_chimp_button_typography_typography\":\"globals\\/typography?id=a892a9f\",\"ekit_mail_chimp_input_typography_typography\":\"globals\\/typography?id=text\"},\"ekit_mail_chimp_input_icon_background_background\":\"classic\",\"ekit_mail_chimp_input_label_typography_typography\":\"custom\",\"ekit_mail_chimp_input_label_typography_font_family\":\"Inter\",\"ekit_mail_chimp_input_label_typography_font_weight\":\"600\",\"ekit_mail_chimp_section_form_name_show\":\"\",\"ekit_mail_chimp_input_style_margin_bottom\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"ekit_mail_chimp_button_border_color\":\"#2843CF\",\"ekit_mail_chimp_submit_icon_show\":\"\",\"ekit_mail_chimp_button_style_use_width_height\":\"yes\",\"ekit_mail_chimp_button_width\":{\"unit\":\"px\",\"size\":115,\"sizes\":[]},\"ekit_mail_chimp_input_style_border_border\":\"solid\",\"ekit_mail_chimp_opt_in_success_message\":\"Please check your mail and confirm subscribe\"},\"elements\":[],\"widgetType\":\"elementskit-mail-chimp\"},{\"id\":\"3f1ae351\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13f2353a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=accent\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"37640353\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3fb16302\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"58287972\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"27a20b2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 All rights reserved to <a href=\\\"https:\\/\\/ideascloud.in\\/\\\">Ideas Cloud<\\/a><\\/p>\",\"align\":\"center\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7f7fd94\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1537,293,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1538,294,'_wp_page_template','elementor_canvas'),(1539,294,'_elementor_edit_mode','builder'),(1540,294,'_elementor_template_type','wp-post'),(1541,294,'_elementor_version','3.14.1'),(1542,294,'_elementor_data','[{\"id\":\"2a652bd2\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#001312\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"background_color\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.02,\"sizes\":[]},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false},\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"gap\":\"no\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"20\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d380c8f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"100\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6c0e9dd0\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"1ef7a38f\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":29.062999999999999,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"-40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"40\",\"bottom\":\"50\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"background_background\":\"classic\",\"background_color\":\"#022E2C\",\"__globals__\":{\"background_color\":\"\"},\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_position\":\"center\"},\"elements\":[{\"id\":\"45a7806a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":219,\"url\":\"https:\\/\\/health.ideascloud.in\\/wp-content\\/uploads\\/2023\\/07\\/Health-Cloud-Logo.webp\",\"alt\":\"Health-Cloud-Logo\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"left\",\"width\":{\"unit\":\"%\",\"size\":75,\"sizes\":[]},\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"20\",\"left\":\"30\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_element_width\":\"initial\",\"_element_width_mobile\":\"initial\",\"_element_custom_width\":{\"unit\":\"%\",\"size\":76.066000000000003},\"_element_custom_width_mobile\":{\"unit\":\"px\",\"size\":271.54700000000003}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"94b3590\",\"elType\":\"widget\",\"settings\":{\"html\":\"                        <script src=\\\"https:\\/\\/static.elfsight.com\\/platform\\/platform.js\\\" data-use-service-core defer><\\/script>\\n<div class=\\\"elfsight-app-cd7ae0f4-2f9f-4906-8b6f-9ea34df2b167\\\"><\\/div>\"},\"elements\":[],\"widgetType\":\"html\"},{\"id\":\"7f02d05a\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\",\"selected_icon\":{\"value\":\"fas fa-map-marker-alt\",\"library\":\"fa-solid\"},\"_id\":\"8cfc1eb\"},{\"text\":\"info@whatthehell.co\",\"selected_icon\":{\"value\":\"fas fa-envelope\",\"library\":\"fa-solid\"},\"_id\":\"01dad71\"},{\"text\":\"93156 66436\",\"selected_icon\":{\"value\":\"fas fa-phone-alt\",\"library\":\"fa-solid\"},\"_id\":\"e0e44de\"}],\"space_between\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":9,\"sizes\":[]},\"__globals__\":{\"icon_color\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"icon_align_mobile\":\"left\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"5be22c40\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":23.568000000000001,\"_inline_size_mobile\":\"100\",\"_inline_size_tablet\":\"50\",\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"margin_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"80\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"120\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e55215c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Other Pages\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"title_color\":\"#FFFFFF\",\"header_size\":\"h4\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"18d68b78\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Home\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"About Us\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Services\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"Cases\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"23e9052\"},{\"text\":\"Contact\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"1d3fc9c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":17.280000000000001,\"_inline_size_mobile\":\"100\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"4a533a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Quick Links\",\"title_color\":\"#FFFFFF\",\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"globals\\/typography?id=4e452f7\"},\"header_size\":\"h4\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5e0e09e1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Privacy Policy\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"8e5ccb4\"},{\"text\":\"Term Of Service\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"_id\":\"b2b06d7\",\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},{\"text\":\"Disclaimer\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"fcbb08b\"},{\"text\":\"Credits\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"2a5846b\"},{\"text\":\"FAQ\",\"selected_icon\":{\"value\":\"fas fa-angle-right\",\"library\":\"fa-solid\"},\"link\":{\"url\":\"#\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_id\":\"76de45a\"}],\"space_between\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"__globals__\":{\"text_color_hover\":\"globals\\/colors?id=accent\",\"text_color\":\"\",\"icon_color\":\"globals\\/colors?id=accent\",\"icon_typography_typography\":\"globals\\/typography?id=text\"},\"text_color\":\"#FFFFFF\",\"text_indent\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":\"1\"},{\"id\":\"7a933100\",\"elType\":\"column\",\"settings\":{\"_column_size\":\"25\",\"_inline_size\":30.088999999999999,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"_inline_size_tablet\":\"50\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f1ae351\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Get the latest news & updates\\n\",\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"text_color\":\"globals\\/colors?id=text\",\"typography_typography\":\"globals\\/typography?id=text\"},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"13f2353a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"icon icon-facebook\",\"library\":\"ekiticons\"},\"_id\":\"0fb8cc7\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"4be5bc7\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"147010a\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"df2ad14\"}],\"shape\":\"circle\",\"align\":\"left\",\"icon_color\":\"custom\",\"icon_secondary_color\":\"#FFFFFF\",\"icon_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.69999999999999996,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"hover_primary_color\":\"#FFFFFF\",\"hover_animation\":\"shrink\",\"__globals__\":{\"icon_primary_color\":\"globals\\/colors?id=accent\",\"hover_secondary_color\":\"globals\\/colors?id=accent\"},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"},{\"id\":\"37640353\",\"elType\":\"widget\",\"settings\":{\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#A0AABA2B\",\"gap\":{\"unit\":\"px\",\"size\":\"2\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"__globals__\":{\"color\":\"\"},\"width\":{\"unit\":\"%\",\"size\":98,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"3fb16302\",\"elType\":\"section\",\"settings\":{\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"border_color\":\"#C2C2C2\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":\"\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"0\",\"bottom\":\"\",\"left\":\"0\",\"isLinked\":\"1\"},\"jet_sticky_section_sticky\":\"\",\"jet_sticky_section_sticky_visibility\":[\"desktop\",\"tablet\",\"mobile\"],\"jet_sticky_section_sticky_z_index\":\"\",\"jet_sticky_section_sticky_max_width\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_padding_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"jet_sticky_section_sticky_background_background\":\"\",\"jet_sticky_section_sticky_background_color\":\"\",\"jet_sticky_section_sticky_background_color_stop\":{\"unit\":\"%\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_color_b\":\"#f2295b\",\"jet_sticky_section_sticky_background_color_b_stop\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_type\":\"linear\",\"jet_sticky_section_sticky_background_gradient_angle\":{\"unit\":\"deg\",\"size\":180,\"sizes\":[]},\"jet_sticky_section_sticky_background_gradient_position\":\"center center\",\"jet_sticky_section_sticky_background_image\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_position\":\"\",\"jet_sticky_section_sticky_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_xpos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_xpos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_ypos_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"jet_sticky_section_sticky_background_attachment\":\"\",\"jet_sticky_section_sticky_background_repeat\":\"\",\"jet_sticky_section_sticky_background_repeat_tablet\":\"\",\"jet_sticky_section_sticky_background_repeat_mobile\":\"\",\"jet_sticky_section_sticky_background_size\":\"\",\"jet_sticky_section_sticky_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_bg_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_bg_width_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"jet_sticky_section_sticky_background_video_link\":\"\",\"jet_sticky_section_sticky_background_video_start\":\"\",\"jet_sticky_section_sticky_background_video_end\":\"\",\"jet_sticky_section_sticky_background_play_once\":\"\",\"jet_sticky_section_sticky_background_play_on_mobile\":\"\",\"jet_sticky_section_sticky_background_privacy_mode\":\"\",\"jet_sticky_section_sticky_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"jet_sticky_section_sticky_background_slideshow_gallery\":[],\"jet_sticky_section_sticky_background_slideshow_loop\":\"yes\",\"jet_sticky_section_sticky_background_slideshow_slide_duration\":5000,\"jet_sticky_section_sticky_background_slideshow_slide_transition\":\"fade\",\"jet_sticky_section_sticky_background_slideshow_transition_duration\":500,\"jet_sticky_section_sticky_background_slideshow_background_size\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_size_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_tablet\":\"\",\"jet_sticky_section_sticky_background_slideshow_background_position_mobile\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns\":\"\",\"jet_sticky_section_sticky_background_slideshow_ken_burns_zoom_direction\":\"in\",\"jet_sticky_section_sticky_box_shadow_box_shadow_type\":\"\",\"jet_sticky_section_sticky_box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":0,\"blur\":10,\"spread\":0,\"color\":\"rgba(0,0,0,0.5)\"},\"jet_sticky_section_sticky_box_shadow_box_shadow_position\":\" \",\"jet_sticky_section_sticky_transition\":{\"unit\":\"px\",\"size\":0.10000000000000001,\"sizes\":[]},\"gap\":\"no\",\"content_width\":{\"unit\":\"px\",\"size\":1170,\"sizes\":[]}},\"elements\":[{\"id\":\"58287972\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"jet_sticky_column_sticky_enable\":\"false\",\"jet_sticky_column_sticky_top_spacing\":50,\"jet_sticky_column_sticky_bottom_spacing\":50,\"jet_sticky_column_sticky_enable_on\":[\"desktop\",\"tablet\"],\"_inline_size\":null},\"elements\":[{\"id\":\"27a20b2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright \\u00a9 2023 All rights reserved to <a href=\\\"https:\\/\\/ideascloud.in\\/\\\">Ideas Cloud<\\/a><\\/p>\",\"align\":\"center\",\"align_mobile\":\"center\",\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=7f7fd94\",\"text_color\":\"globals\\/colors?id=text\"},\"text_color\":\"#7A7A7A\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":\"1\"}],\"isInner\":\"1\"}],\"isInner\":\"\"}],\"isInner\":\"\"}]'),(1543,294,'_elementor_page_assets','a:1:{s:6:\"styles\";a:1:{i:0;s:12:\"e-animations\";}}'),(1545,295,'_wp_attached_file','2023/07/Health-Cloud-Logo-04.webp'),(1546,295,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2041;s:6:\"height\";i:1279;s:4:\"file\";s:33:\"2023/07/Health-Cloud-Logo-04.webp\";s:8:\"filesize\";i:26382;s:5:\"sizes\";a:5:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Health-Cloud-Logo-04-300x188.webp\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5274;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"Health-Cloud-Logo-04-1024x642.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:642;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19970;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Health-Cloud-Logo-04-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4146;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Health-Cloud-Logo-04-768x481.webp\";s:5:\"width\";i:768;s:6:\"height\";i:481;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14518;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"Health-Cloud-Logo-04-1536x963.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:963;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:31720;}}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:{}}}'),(1547,295,'_wp_attachment_image_alt',''),(1548,296,'_elementor_edit_mode','builder'),(1549,296,'_elementor_template_type','kit'),(1550,296,'_elementor_version','3.14.1'),(1551,296,'_wp_page_template','default'),(1552,296,'_elementor_page_settings','a:83:{s:13:\"custom_colors\";a:2:{i:0;a:3:{s:3:\"_id\";s:7:\"50928c2\";s:5:\"title\";s:15:\"Bg Green darken\";s:5:\"color\";s:7:\"#01221F\";}i:1;a:3:{s:3:\"_id\";s:7:\"e5c8540\";s:5:\"title\";s:5:\"White\";s:5:\"color\";s:7:\"#FFFFFF\";}}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:\"#06685F\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#DD697E\";}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:\"#EC95A6\";}}s:17:\"system_typography\";a:4:{i:0;a:8:{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:16:\"Playfair Display\";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:54;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}}i:1;a:8:{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:16:\"Playfair Display\";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:32;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}}i:2;a:8:{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:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"300\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:3;a:8:{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:5:\"Inter\";s:22:\"typography_font_weight\";s:3:\"500\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:16:{i:0;a:8:{s:3:\"_id\";s:7:\"7f517b0\";s:5:\"title\";s:2:\"H3\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}}i:1;a:8:{s:3:\"_id\";s:7:\"4e452f7\";s:5:\"title\";s:2:\"H4\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:2;a:8:{s:3:\"_id\";s:7:\"997f697\";s:5:\"title\";s:2:\"H5\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}}i:3;a:7:{s:3:\"_id\";s:7:\"1660fa3\";s:5:\"title\";s:2:\"H6\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}}i:4;a:10:{s:3:\"_id\";s:7:\"4b416bd\";s:5:\"title\";s:6:\"H2 Alt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:42;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:36;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:26;s:5:\"sizes\";a:0:{}}s:29:\"typography_line_height_tablet\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}}i:5;a:8:{s:3:\"_id\";s:7:\"01acdab\";s:5:\"title\";s:6:\"H3 Alt\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:16:\"Playfair Display\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}i:6;a:9:{s:3:\"_id\";s:7:\"8e0c2ec\";s:5:\"title\";s:3:\"Nav\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}}i:7;a:10:{s:3:\"_id\";s:7:\"a892a9f\";s:5:\"title\";s:6:\"Button\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:12;s:5:\"sizes\";a:0:{}}}i:8;a:10:{s:3:\"_id\";s:7:\"a48ae84\";s:5:\"title\";s:8:\"Button 2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:25:\"typography_text_transform\";s:9:\"uppercase\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}}i:9;a:8:{s:3:\"_id\";s:7:\"919cf83\";s:5:\"title\";s:7:\"Funfact\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:28;s:5:\"sizes\";a:0:{}}}i:10;a:7:{s:3:\"_id\";s:7:\"7f7fd94\";s:5:\"title\";s:6:\"Text 2\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"300\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}i:11;a:8:{s:3:\"_id\";s:7:\"6f01aa7\";s:5:\"title\";s:11:\"Text italic\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}}i:12;a:10:{s:3:\"_id\";s:7:\"5702cc8\";s:5:\"title\";s:16:\"Desc Testimonial\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:22;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"400\";s:21:\"typography_font_style\";s:6:\"italic\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_tablet\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}}i:13;a:8:{s:3:\"_id\";s:7:\"2260201\";s:5:\"title\";s:3:\"404\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:156;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:96;s:5:\"sizes\";a:0:{}}}i:14;a:8:{s:3:\"_id\";s:7:\"ff23f0d\";s:5:\"title\";s:7:\"Pricing\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:52;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"600\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:27:\"typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:42;s:5:\"sizes\";a:0:{}}}i:15;a:7:{s:3:\"_id\";s:7:\"b31596a\";s:5:\"title\";s:12:\"Phone Number\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:5:\"Inter\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:22:\"typography_font_weight\";s:3:\"500\";s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}}}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:20:\"button_border_border\";s:5:\"solid\";s:19:\"button_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:8:\"isLinked\";b:0;}s:20:\"button_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";s:8:\"isLinked\";b:1;}s:14:\"button_padding\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"20\";s:5:\"right\";s:2:\"40\";s:6:\"bottom\";s:2:\"20\";s:4:\"left\";s:2:\"40\";s:8:\"isLinked\";b:0;}s:11:\"__globals__\";a:23:{s:10:\"body_color\";s:22:\"globals/colors?id=text\";s:26:\"body_typography_typography\";s:26:\"globals/typography?id=text\";s:17:\"link_normal_color\";s:24:\"globals/colors?id=accent\";s:16:\"link_hover_color\";s:25:\"globals/colors?id=primary\";s:8:\"h1_color\";s:25:\"globals/colors?id=primary\";s:24:\"h1_typography_typography\";s:29:\"globals/typography?id=primary\";s:8:\"h2_color\";s:25:\"globals/colors?id=primary\";s:24:\"h2_typography_typography\";s:31:\"globals/typography?id=secondary\";s:8:\"h3_color\";s:25:\"globals/colors?id=primary\";s:24:\"h3_typography_typography\";s:29:\"globals/typography?id=7f517b0\";s:8:\"h4_color\";s:25:\"globals/colors?id=primary\";s:24:\"h4_typography_typography\";s:29:\"globals/typography?id=4e452f7\";s:8:\"h5_color\";s:24:\"globals/colors?id=accent\";s:24:\"h5_typography_typography\";s:29:\"globals/typography?id=997f697\";s:8:\"h6_color\";s:25:\"globals/colors?id=primary\";s:24:\"h6_typography_typography\";s:29:\"globals/typography?id=1660fa3\";s:23:\"button_background_color\";s:24:\"globals/colors?id=accent\";s:17:\"button_text_color\";s:25:\"globals/colors?id=e5c8540\";s:28:\"button_typography_typography\";s:29:\"globals/typography?id=a48ae84\";s:23:\"button_hover_text_color\";s:0:\"\";s:29:\"button_hover_background_color\";s:0:\"\";s:32:\"form_label_typography_typography\";s:0:\"\";s:16:\"form_label_color\";s:25:\"globals/colors?id=primary\";}s:10:\"body_color\";s:7:\"#7A7A7A\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:5:\"Inter\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:32:\"body_typography_font_size_mobile\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:27:\"body_typography_font_weight\";s:3:\"300\";s:27:\"body_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.5;s:5:\"sizes\";a:0:{}}s:17:\"link_normal_color\";s:7:\"#E17141\";s:16:\"link_hover_color\";s:7:\"#06685F\";s:8:\"h1_color\";s:7:\"#06685F\";s:24:\"h1_typography_typography\";s:6:\"custom\";s:25:\"h1_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h1_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:54;s:5:\"sizes\";a:0:{}}s:25:\"h1_typography_font_weight\";s:3:\"600\";s:25:\"h1_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:8:\"h2_color\";s:7:\"#06685F\";s:24:\"h2_typography_typography\";s:6:\"custom\";s:25:\"h2_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h2_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:32;s:5:\"sizes\";a:0:{}}s:25:\"h2_typography_font_weight\";s:3:\"600\";s:25:\"h2_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:8:\"h3_color\";s:7:\"#06685F\";s:24:\"h3_typography_typography\";s:6:\"custom\";s:25:\"h3_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h3_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:24;s:5:\"sizes\";a:0:{}}s:25:\"h3_typography_font_weight\";s:3:\"600\";s:25:\"h3_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:8:\"h4_color\";s:7:\"#06685F\";s:24:\"h4_typography_typography\";s:6:\"custom\";s:25:\"h4_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h4_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h4_typography_font_weight\";s:3:\"600\";s:25:\"h4_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:8:\"h5_color\";s:7:\"#E17141\";s:24:\"h5_typography_typography\";s:6:\"custom\";s:25:\"h5_typography_font_family\";s:5:\"Inter\";s:23:\"h5_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:18;s:5:\"sizes\";a:0:{}}s:25:\"h5_typography_font_weight\";s:3:\"500\";s:25:\"h5_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:8:\"h6_color\";s:7:\"#06685F\";s:24:\"h6_typography_typography\";s:6:\"custom\";s:25:\"h6_typography_font_family\";s:16:\"Playfair Display\";s:23:\"h6_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:25:\"h6_typography_font_weight\";s:3:\"600\";s:25:\"h6_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:1.2;s:5:\"sizes\";a:0:{}}s:28:\"button_typography_typography\";s:6:\"custom\";s:29:\"button_typography_font_family\";s:5:\"Inter\";s:27:\"button_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:14;s:5:\"sizes\";a:0:{}}s:29:\"button_typography_font_weight\";s:3:\"600\";s:32:\"button_typography_text_transform\";s:9:\"uppercase\";s:29:\"button_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:32:\"button_typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:1.3;s:5:\"sizes\";a:0:{}}s:17:\"button_text_color\";s:7:\"#FFFFFF\";s:23:\"button_background_color\";s:7:\"#E17141\";s:23:\"button_hover_text_color\";s:7:\"#FFFFFF\";s:29:\"button_hover_background_color\";s:7:\"#E17141\";s:16:\"form_label_color\";s:7:\"#06685F\";s:32:\"form_label_typography_typography\";s:6:\"custom\";s:33:\"form_label_typography_font_family\";s:16:\"Playfair Display\";s:31:\"form_label_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:16;s:5:\"sizes\";a:0:{}}s:33:\"form_label_typography_font_weight\";s:3:\"600\";s:33:\"form_label_typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";d:2.6000000000000001;s:5:\"sizes\";a:0:{}}s:24:\"form_field_border_border\";s:5:\"solid\";s:23:\"form_field_border_width\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"1\";s:5:\"right\";s:1:\"1\";s:6:\"bottom\";s:1:\"1\";s:4:\"left\";s:1:\"1\";s:8:\"isLinked\";b:1;}s:23:\"form_field_border_color\";s:7:\"#E1E1E1\";s:24:\"form_field_border_radius\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:1:\"5\";s:5:\"right\";s:1:\"5\";s:6:\"bottom\";s:1:\"5\";s:4:\"left\";s:1:\"5\";s:8:\"isLinked\";b:1;}s:21:\"button_padding_mobile\";a:6:{s:4:\"unit\";s:2:\"px\";s:3:\"top\";s:2:\"18\";s:5:\"right\";s:2:\"32\";s:6:\"bottom\";s:2:\"18\";s:4:\"left\";s:2:\"32\";s:8:\"isLinked\";b:0;}s:9:\"site_name\";s:12:\"My WordPress\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";}'),(1553,296,'_elementor_data','[]'),(1554,296,'_elementor_page_assets','a:0:{}'),(1580,58,'_elementor_css','a:6:{s:4:\"time\";i:1692802078;s:5:\"fonts\";a:2:{i:0;s:16:\"Playfair Display\";i:2;s:5:\"Inter\";}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1581,156,'_elementor_css','a:6:{s:4:\"time\";i:1692802079;s:5:\"fonts\";a:1:{i:0;s:16:\"Playfair Display\";}s:5:\"icons\";a:5:{i:0;s:0:\"\";i:1;s:9:\"ekiticons\";i:2;s:8:\"jkiticon\";i:3;s:8:\"fa-solid\";i:16;s:3:\"svg\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1582,274,'_elementor_css','a:6:{s:4:\"time\";i:1692802079;s:5:\"fonts\";a:1:{i:0;s:5:\"Inter\";}s:5:\"icons\";a:1:{i:0;s:9:\"ekiticons\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1583,280,'_elementor_css','a:6:{s:4:\"time\";i:1692802079;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:3:{i:0;s:8:\"fa-solid\";i:13;s:9:\"ekiticons\";i:14;s:9:\"fa-brands\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1584,214,'_elementor_css','a:6:{s:4:\"time\";i:1692802079;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:1:{i:0;s:0:\"\";}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;s:0:\"\";}'),(1585,253,'_elementor_inline_svg','<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M805 5109 c-356 -82 -641 -342 -748 -684 -113 -360 -12 -757 259\n-1015 90 -85 155 -131 267 -186 58 -29 76 -42 71 -54 -3 -8 -16 -56 -29 -107\n-43 -165 -58 -295 -58 -493 0 -205 15 -325 62 -505 16 -60 28 -111 28 -111 -1\n-1 -40 -20 -87 -44 -270 -134 -463 -378 -537 -678 -12 -47 -17 -112 -17 -217\n-1 -126 3 -164 23 -240 32 -124 73 -212 106 -227 34 -15 75 -1 95 34 13 25 13\n32 -4 75 -100 258 -100 489 3 708 115 246 308 407 572 476 164 43 384 25 543\n-46 192 -85 358 -251 442 -442 65 -147 87 -375 50 -526 -63 -264 -233 -473\n-478 -586 -129 -60 -201 -75 -358 -75 -110 0 -150 4 -215 22 -108 31 -226 90\n-309 157 -79 62 -120 71 -156 33 -44 -48 -22 -89 95 -176 178 -132 416 -202\n644 -189 362 21 678 231 841 557 24 47 43 86 44 87 0 1 51 -12 112 -27 311\n-80 686 -82 991 -5 53 14 104 27 113 30 14 4 23 -7 41 -52 74 -184 273 -389\n474 -490 559 -282 1255 41 1411 655 33 130 35 357 3 482 -74 290 -255 519\n-520 655 -52 26 -95 49 -96 49 -1 1 8 41 22 88 91 334 90 744 -5 1072 -11 38\n-19 70 -17 71 1 1 40 21 86 44 263 130 454 366 527 650 35 135 35 357 0 493\n-85 335 -338 602 -676 714 -82 28 -91 29 -295 29 -204 0 -212 -1 -295 -29\n-211 -71 -374 -186 -508 -360 -38 -49 -117 -188 -133 -233 -3 -8 -37 -2 -114\n18 -180 47 -300 62 -505 62 -198 0 -328 -15 -493 -58 -51 -13 -99 -26 -107\n-29 -11 -5 -25 15 -55 76 -128 265 -369 461 -659 537 -66 17 -108 21 -245 20\n-91 -1 -184 -5 -206 -10z m415 -154 c258 -68 478 -257 579 -500 48 -114 64\n-196 64 -325 0 -187 -48 -342 -153 -494 -55 -80 -63 -121 -30 -151 26 -24 74\n-23 101 1 35 31 99 131 140 218 76 163 109 350 90 518 -6 54 -11 102 -11 107\n0 23 244 75 429 92 201 17 456 -8 658 -67 l55 -16 -6 -39 c-54 -335 59 -673\n299 -898 226 -211 522 -306 836 -268 l66 8 22 -80 c86 -318 86 -659 -1 -984\nl-20 -78 -72 8 c-379 42 -727 -104 -945 -397 -104 -139 -161 -282 -188 -465\n-14 -93 -15 -128 -5 -224 6 -63 10 -116 8 -118 -9 -9 -208 -54 -302 -68 -139\n-21 -388 -21 -530 0 -95 14 -291 59 -301 69 -2 2 1 51 7 108 32 296 -74 594\n-289 809 -223 222 -520 323 -848 286 l-71 -8 -16 55 c-59 201 -84 456 -67 658\n17 193 69 428 94 428 7 0 53 -5 102 -11 167 -19 383 20 535 96 93 47 115 92\n68 142 -29 31 -48 29 -153 -16 -153 -66 -302 -89 -450 -71 -175 21 -346 100\n-475 218 -250 228 -341 579 -234 901 43 129 98 215 209 326 137 137 278 213\n457 244 75 14 271 6 348 -14z m3123 -4 c191 -50 374 -180 486 -344 47 -68 106\n-200 127 -282 26 -103 24 -303 -4 -410 -137 -512 -699 -782 -1178 -565 -231\n104 -409 316 -476 565 -28 108 -30 308 -3 410 69 267 262 492 507 592 160 65\n373 79 541 34z m-30 -3106 c299 -61 555 -311 639 -620 33 -123 30 -319 -6\n-438 -131 -434 -544 -693 -977 -611 -318 60 -568 290 -665 611 -23 77 -27 106\n-27 223 0 159 20 248 82 375 177 359 555 541 954 460z\"/>\n<path d=\"M1082 4564 c-64 -24 -137 -102 -159 -170 -17 -55 -18 -56 -50 -51\n-59 10 -137 58 -211 129 -63 62 -75 69 -100 64 -59 -14 -91 -96 -99 -252 -8\n-155 26 -252 124 -355 l54 -56 -32 -7 c-18 -3 -63 -9 -101 -13 -77 -7 -98 -24\n-98 -79 0 -38 19 -56 95 -90 98 -43 198 -64 304 -64 192 0 329 56 456 184 122\n123 176 239 195 423 8 70 15 100 34 128 36 53 67 142 60 171 -8 29 -40 54 -71\n54 -13 0 -45 -12 -71 -27 l-48 -27 -50 24 c-62 31 -169 37 -232 14z m186 -164\nc45 -32 47 -41 43 -145 -9 -225 -149 -407 -360 -469 -67 -20 -177 -22 -147 -3\n45 27 66 56 66 90 0 39 -13 52 -88 92 -106 57 -163 147 -170 269 l-5 79 34\n-25 c53 -40 114 -68 196 -89 164 -41 223 -16 223 97 0 118 112 174 208 104z\"/>\n<path d=\"M3067 3330 c-18 -14 -27 -32 -29 -57 -3 -36 -5 -38 -114 -94 -193\n-98 -483 -198 -515 -178 -8 5 -104 9 -214 9 -225 0 -250 -6 -292 -69 -22 -33\n-23 -41 -23 -275 0 -223 2 -243 20 -274 29 -47 75 -72 137 -72 28 0 54 -3 56\n-7 3 -5 10 -120 17 -258 10 -210 14 -254 29 -275 25 -35 82 -39 112 -9 24 24\n24 15 2 425 l-6 121 104 5 c89 5 115 2 184 -18 100 -29 116 -30 143 -1 27 29\n29 78 4 101 -18 16 -95 44 -179 66 l-43 11 0 183 0 182 97 28 c131 37 270 90\n375 142 48 24 92 44 98 44 7 0 10 -135 10 -399 l0 -400 -64 30 c-71 33 -106\n32 -131 -4 -38 -54 -12 -92 105 -153 85 -45 90 -49 90 -80 0 -64 71 -96 121\n-55 l24 19 3 624 c1 342 0 633 -3 646 -8 32 -41 62 -69 62 -13 0 -35 -9 -49\n-20z m-757 -665 l0 -195 -140 0 -140 0 0 195 0 195 140 0 140 0 0 -195z\"/>\n<path d=\"M4189 4696 c-78 -21 -144 -80 -180 -160 -17 -40 -23 -75 -27 -183\nl-5 -133 -59 0 c-53 0 -63 -3 -90 -30 -24 -25 -29 -36 -24 -58 11 -46 41 -62\n111 -62 l64 0 3 -239 c3 -218 5 -241 22 -260 24 -27 86 -29 109 -3 14 16 17\n52 19 258 l3 239 77 5 c88 6 109 19 110 70 1 25 -6 40 -26 57 -23 19 -38 23\n-98 23 l-70 0 4 125 c3 105 7 129 24 152 32 44 80 63 157 63 38 0 77 5 88 11\n48 25 44 105 -7 128 -32 14 -146 13 -205 -3z\"/>\n<path d=\"M3715 1526 c-38 -16 -102 -87 -112 -123 -5 -16 -8 -194 -8 -398 l0\n-370 25 -45 c28 -49 73 -84 129 -100 48 -13 704 -13 752 0 56 16 101 51 129\n100 l25 45 0 380 c0 416 1 406 -62 469 -54 55 -60 56 -470 56 -289 -1 -385 -4\n-408 -14z m780 -160 c14 -20 15 -69 13 -366 -3 -325 -4 -342 -22 -356 -29 -21\n-693 -21 -722 0 -18 14 -19 31 -22 356 -2 297 -1 346 13 366 l15 24 355 0 355\n0 15 -24z\"/>\n<path d=\"M4046 1225 c-125 -44 -181 -195 -118 -316 83 -160 311 -160 394 0 96\n184 -80 386 -276 316z m129 -160 c70 -69 -30 -170 -102 -103 -14 13 -23 33\n-23 50 0 36 40 78 75 78 14 0 37 -11 50 -25z\"/>\n<path d=\"M791 1406 c-49 -27 -50 -39 -51 -379 0 -338 3 -362 49 -387 51 -27\n82 -14 361 146 162 93 278 166 288 181 20 32 21 83 0 114 -23 35 -557 339\n-594 339 -16 -1 -40 -7 -53 -14z m296 -282 c93 -53 169 -98 171 -99 1 -1 -71\n-44 -160 -95 -90 -52 -173 -100 -185 -108 l-23 -14 0 212 c0 183 2 211 15 206\n8 -3 90 -49 182 -102z\"/>\n</g>\n</svg>\n'),(1586,252,'_elementor_inline_svg','<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M2567 4629 c-286 -42 -582 -177 -796 -363 l-65 -56 -362 0 c-361 0\n-363 0 -384 -22 -39 -42 -19 -101 41 -118 19 -6 154 -10 301 -10 l267 0 -47\n-64 c-26 -35 -51 -71 -57 -80 -9 -15 -66 -16 -662 -10 l-653 7 0 79 0 78 275\n0 c269 0 275 0 295 22 41 44 13 111 -52 123 -18 4 -154 5 -303 3 -302 -3 -318\n-7 -349 -72 -15 -31 -16 -161 -16 -1456 0 -1295 1 -1425 16 -1456 31 -66 16\n-64 617 -64 532 0 544 0 562 20 25 28 23 76 -4 103 -22 22 -22 22 -531 25\nl-510 3 0 1221 0 1220 607 -7 c335 -4 609 -9 611 -10 2 -2 -4 -18 -13 -35 -9\n-18 -34 -85 -55 -149 l-38 -116 -384 -2 c-270 -2 -390 -6 -405 -15 -13 -6 -27\n-27 -33 -47 -13 -46 -13 -585 0 -630 17 -62 7 -60 436 -61 l390 0 29 -92 c16\n-51 31 -99 33 -105 3 -10 -87 -13 -427 -13 -430 0 -430 0 -451 -22 -37 -40\n-21 -97 34 -118 17 -6 190 -10 476 -10 l449 0 17 -33 c9 -17 34 -58 55 -89 22\n-31 39 -62 39 -67 0 -8 -163 -11 -525 -11 l-524 0 -21 -22 c-37 -40 -21 -97\n34 -118 18 -6 229 -10 603 -10 l575 0 75 -70 c93 -87 255 -196 376 -254 429\n-205 921 -206 1350 -4 l107 51 93 -90 c106 -104 138 -118 210 -89 l42 16 115\n-115 115 -116 -1343 3 -1344 3 -19 -24 c-23 -28 -24 -69 -3 -99 15 -21 21 -22\n193 -22 98 0 180 -2 183 -5 2 -3 -9 -56 -26 -119 l-30 -113 -101 -6 c-56 -4\n-120 -13 -143 -21 -95 -34 -174 -113 -207 -207 -22 -60 -20 -181 3 -202 15\n-13 130 -16 1049 -19 980 -3 1032 -2 1051 15 26 24 33 62 22 136 -11 80 -41\n140 -96 195 -71 72 -120 90 -253 96 l-114 5 -32 117 c-18 65 -30 120 -27 123\n3 3 316 2 696 -1 l691 -7 185 -181 c107 -106 202 -190 225 -201 60 -29 180\n-32 237 -7 144 63 212 222 157 367 -20 53 -42 80 -201 241 l-178 181 0 1277\nc0 1162 -1 1281 -16 1312 -30 64 -33 64 -447 64 l-375 0 -73 62 c-220 184\n-487 306 -774 353 -98 16 -369 18 -468 4z m458 -154 c208 -34 427 -124 598\n-245 286 -205 494 -528 563 -877 13 -66 22 -88 42 -103 31 -25 63 -25 93 -1\n20 16 24 27 22 68 -3 68 -47 230 -92 340 l-39 93 179 0 179 0 0 -1022 0 -1023\n-124 124 -125 124 15 28 c18 36 18 92 0 127 -8 15 -50 62 -94 106 l-80 78 44\n92 c23 50 59 139 78 197 34 101 76 307 76 372 0 42 -35 77 -75 77 -51 0 -66\n-26 -85 -152 -51 -335 -188 -599 -429 -830 -229 -220 -517 -355 -830 -389\n-647 -70 -1271 325 -1490 944 -291 825 241 1726 1104 1871 110 19 359 19 470\n1z m1545 -495 l0 -80 -221 2 -221 3 -54 78 -55 77 276 0 275 0 0 -80z m-3345\n-887 c0 -109 3 -210 8 -225 l7 -28 -325 0 -325 0 0 225 0 225 318 0 317 0 0\n-197z m2918 -991 l57 -57 -190 -190 -190 -190 -60 60 -60 60 93 76 c87 72 188\n176 251 262 16 20 31 37 35 37 4 0 32 -26 64 -58z m439 -629 c201 -203 371\n-378 377 -390 26 -51 1 -131 -51 -163 -21 -13 -51 -20 -83 -20 l-49 0 -378\n377 -378 378 92 92 c51 51 95 93 98 93 3 0 170 -165 372 -367z m-1811 -401\nc15 -51 30 -104 33 -117 l6 -25 -450 0 c-425 0 -451 1 -446 18 3 9 17 60 31\n112 15 52 29 98 31 102 3 5 177 7 387 6 l382 -3 26 -93z m406 -315 c44 -23\n103 -94 103 -124 0 -7 -1830 -5 -1838 2 -2 2 3 16 12 33 19 37 79 90 109 96\n12 3 31 7 42 10 11 3 363 3 782 1 646 -3 766 -6 790 -18z\"/>\n<path d=\"M2685 4339 c-292 -24 -555 -143 -766 -346 -197 -190 -319 -408 -376\n-675 -25 -116 -25 -371 0 -488 64 -299 224 -566 445 -742 49 -39 82 -58 101\n-58 37 0 71 38 71 78 0 27 -12 41 -85 103 -184 154 -307 352 -372 596 -23 88\n-26 116 -26 268 0 151 3 181 25 266 36 132 78 229 147 336 230 355 621 547\n1042 512 518 -44 942 -447 1014 -964 12 -85 7 -276 -10 -363 -43 -226 -165\n-446 -335 -606 -290 -273 -694 -370 -1083 -260 -80 22 -90 23 -116 10 -47 -25\n-55 -70 -18 -110 16 -19 48 -32 114 -50 445 -117 890 -2 1219 316 194 188 319\n421 369 688 21 111 21 328 0 445 -69 390 -324 733 -678 911 -212 107 -444 152\n-682 133z\"/>\n<path d=\"M2025 3407 c-57 -19 -91 -44 -116 -84 -30 -49 -40 -101 -28 -149 18\n-71 63 -105 205 -159 65 -24 114 -58 114 -77 0 -5 -11 -20 -25 -33 -44 -45\n-134 -31 -209 32 -49 41 -116 10 -116 -55 0 -76 130 -152 258 -152 83 0 134\n22 184 78 48 53 65 111 49 171 -23 86 -70 125 -218 182 -104 40 -113 50 -80\n83 34 34 68 33 146 -5 56 -27 66 -29 92 -18 54 22 64 70 24 117 -52 62 -195\n97 -280 69z\"/>\n<path d=\"M2580 3413 c-51 -20 -50 -15 -50 -338 l0 -302 23 -21 c22 -20 33 -22\n163 -22 134 0 142 1 162 23 31 33 29 80 -4 106 -22 17 -41 21 -110 21 l-84 0\n0 60 0 60 79 0 c88 0 115 14 127 62 5 22 0 33 -24 58 -29 28 -35 30 -106 30\nl-76 0 0 60 0 60 90 0 c77 0 93 3 110 20 25 25 26 71 1 101 -18 23 -26 24\n-153 26 -73 1 -140 0 -148 -4z\"/>\n<path d=\"M3329 3406 c-102 -27 -181 -95 -228 -196 -22 -46 -26 -69 -26 -140 0\n-72 4 -93 27 -140 35 -72 99 -136 168 -169 47 -22 68 -26 150 -26 89 0 99 2\n158 34 67 36 114 86 153 161 33 63 35 212 3 281 -44 95 -131 168 -231 194 -68\n18 -112 18 -174 1z m143 -146 c155 -44 187 -257 52 -350 -66 -45 -172 -39\n-231 13 -71 62 -91 153 -52 234 43 89 135 129 231 103z\"/>\n<path d=\"M450 1758 c-41 -44 -13 -111 52 -123 18 -3 180 -5 359 -3 305 3 328\n4 348 22 27 25 29 86 3 109 -17 15 -58 17 -380 17 -359 0 -361 0 -382 -22z\"/>\n</g>\n</svg>\n'),(1587,251,'_elementor_inline_svg','<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M3620 4984 c-241 -52 -449 -222 -549 -449 -26 -60 -61 -197 -61 -242\nl0 -33 -1235 0 c-1222 0 -1235 0 -1255 -20 -19 -19 -20 -33 -20 -509 l0 -489\n-119 -4 c-109 -4 -124 -7 -184 -36 -76 -38 -129 -92 -166 -171 -22 -47 -26\n-69 -26 -141 1 -71 5 -94 28 -141 50 -104 158 -183 267 -196 l49 -6 3 -239 c3\n-238 3 -240 27 -259 16 -13 39 -19 72 -19 l49 0 0 -462 0 -463 24 -50 c29 -60\n76 -107 136 -134 44 -20 63 -21 773 -21 l727 0 0 -165 0 -165 -104 0 c-187 0\n-260 -27 -313 -117 -26 -44 -28 -58 -32 -166 -3 -112 -2 -120 20 -143 l22 -24\n1058 0 1058 0 21 28 c20 25 22 36 18 142 -3 105 -6 119 -31 163 -53 90 -126\n117 -313 117 l-104 0 0 165 0 165 738 2 c697 3 739 4 772 22 49 26 98 74 123\n121 l22 40 3 1564 2 1564 -22 24 c-21 23 -22 23 -285 23 l-263 0 0 29 c0 16\n-7 62 -15 102 -63 296 -300 532 -597 593 -93 19 -230 19 -318 0z m353 -153\nc213 -75 373 -247 422 -452 68 -289 -74 -588 -341 -718 -168 -82 -380 -82\n-548 0 -219 107 -356 326 -356 569 0 288 191 534 473 611 95 25 264 21 350\n-10z m-940 -789 c59 -265 286 -491 562 -562 107 -27 264 -27 371 0 260 67 463\n255 548 512 14 42 26 88 26 102 l0 26 220 0 220 0 0 -1225 0 -1225 -2170 0\n-2170 0 0 180 0 180 50 0 c37 0 55 5 70 20 19 19 20 33 20 233 0 118 2 216 5\n219 3 3 123 -46 265 -110 l260 -115 0 -66 c0 -111 53 -185 154 -212 94 -26\n210 45 234 143 7 28 12 128 12 251 l0 203 51 24 c179 80 236 315 112 459 -41\n48 -117 101 -144 101 -16 0 -18 20 -21 233 -3 219 -4 234 -26 274 -58 110\n-212 138 -303 56 -55 -50 -62 -66 -69 -157 l-5 -78 -300 -134 c-181 -81 -313\n-134 -332 -134 l-33 0 0 440 0 440 1188 0 1187 0 18 -78z m-1479 -414 c14 -20\n16 -106 16 -736 l0 -713 -25 -24 c-28 -29 -42 -31 -73 -9 l-22 15 0 729 c0\n649 2 730 16 744 23 24 70 20 88 -6z m-244 -733 c0 -309 -3 -455 -10 -455 -13\n0 -490 210 -508 223 -9 8 -12 62 -10 235 l3 225 250 113 c138 61 256 112 263\n113 9 1 12 -96 12 -454z m-670 -1 l0 -205 -183 3 c-184 3 -184 3 -225 32 -50\n34 -92 112 -92 170 1 81 60 164 136 191 27 10 90 14 202 15 l162 0 0 -206z\nm1141 73 c37 -67 11 -174 -52 -207 -18 -10 -19 -6 -19 135 l0 146 24 -18 c14\n-10 34 -35 47 -56z m-1141 -607 l0 -190 -75 0 -75 0 0 183 c0 101 3 187 7 190\n3 4 37 7 75 7 l68 0 0 -190z m4340 -1026 c0 -216 -6 -246 -59 -277 -27 -16\n-167 -17 -2111 -17 -1909 0 -2084 1 -2110 16 -56 33 -60 53 -60 273 l0 201\n2170 0 2170 0 0 -196z m-1660 -599 l0 -165 -510 0 -510 0 0 165 0 165 510 0\n510 0 0 -165z m395 -320 c40 -16 55 -46 55 -111 l0 -44 -960 0 -960 0 0 51 c0\n62 12 87 53 104 49 22 1762 22 1812 0z\"/>\n<path d=\"M3730 4758 c-13 -14 -20 -36 -20 -62 -1 -39 -4 -43 -53 -71 -168 -96\n-168 -334 0 -430 l52 -30 0 -100 0 -100 -19 24 c-11 13 -20 36 -20 53 0 33\n-39 78 -68 78 -11 0 -32 -10 -47 -22 -25 -20 -27 -25 -22 -73 9 -92 66 -172\n145 -204 29 -12 32 -17 32 -57 0 -53 26 -84 70 -84 44 0 70 31 70 84 0 39 3\n45 28 54 46 16 103 73 128 127 57 121 6 268 -111 325 l-45 22 0 101 1 102 19\n-24 c11 -13 20 -36 20 -53 0 -35 40 -78 73 -78 13 0 33 10 45 23 61 65 -15\n230 -126 276 -29 12 -32 17 -32 57 0 76 -72 113 -120 62z m-20 -350 c0 -78 -1\n-81 -17 -65 -22 22 -24 106 -4 130 7 10 15 17 17 17 2 0 4 -37 4 -82z m177\n-350 c4 -34 1 -49 -16 -68 l-20 -25 -1 85 c0 77 1 83 16 68 9 -9 18 -36 21\n-60z\"/>\n<path d=\"M2062 3286 c-100 -101 -108 -121 -67 -161 40 -41 60 -33 161 67 102\n99 114 128 74 168 -40 40 -69 28 -168 -74z\"/>\n<path d=\"M3120 3201 c-95 -30 -191 -120 -225 -212 -19 -50 -20 -79 -20 -424 0\n-345 1 -374 20 -424 25 -68 101 -153 169 -189 l51 -27 680 0 680 0 53 28 c70\n37 128 97 161 166 l26 56 0 390 0 390 -26 56 c-33 69 -91 129 -161 166 l-53\n28 -665 2 c-366 1 -676 -2 -690 -6z m1355 -154 c21 -12 53 -42 70 -65 l30 -44\n3 -346 c2 -243 0 -359 -8 -387 -16 -55 -53 -101 -100 -125 -38 -19 -60 -20\n-673 -20 l-634 0 -44 23 c-29 16 -54 40 -74 72 l-30 48 0 362 0 362 30 48 c20\n32 45 56 74 72 l44 23 636 0 636 0 40 -23z\"/>\n<path d=\"M3559 2921 l-24 -19 0 -337 0 -337 25 -20 c16 -13 33 -18 50 -15 32\n7 561 312 578 334 19 26 14 62 -10 84 -36 31 -559 329 -578 329 -10 0 -28 -9\n-41 -19z m270 -264 c79 -46 143 -87 142 -93 0 -9 -278 -174 -293 -174 -5 0 -8\n79 -8 175 0 96 3 175 8 175 4 0 72 -37 151 -83z\"/>\n<path d=\"M2038 2943 c-35 -42 -27 -91 19 -112 33 -15 423 -15 457 0 13 7 30\n25 37 41 10 25 9 33 -8 56 l-20 27 -235 3 c-214 2 -236 1 -250 -15z\"/>\n<path d=\"M1991 2634 c-12 -15 -21 -36 -21 -47 0 -28 179 -207 207 -207 35 0\n73 38 73 73 0 25 -15 46 -88 119 -73 73 -94 88 -119 88 -22 0 -38 -8 -52 -26z\"/>\n<path d=\"M912 1334 c-22 -15 -30 -66 -14 -90 22 -33 48 -34 822 -34 l771 0 24\n25 c31 30 32 65 2 93 l-23 22 -780 0 c-689 0 -782 -2 -802 -16z\"/>\n<path d=\"M2780 1330 c-29 -29 -26 -74 6 -99 21 -17 41 -21 96 -21 97 0 128 18\n128 76 0 51 -24 64 -123 64 -74 0 -90 -3 -107 -20z\"/>\n</g>\n</svg>\n'),(1588,1,'ekit_post_views_count','7');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_520_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_520_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_520_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
  `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT 0,
  `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_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=InnoDB AUTO_INCREMENT=297 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2023-07-10 12:18:29','2023-07-10 12:18:29','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2023-07-10 12:18:29','2023-07-10 12:18:29','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?p=1',0,'post','',1),(2,1,'2023-07-10 12:18:29','2023-07-10 12:18:29','<!-- wp:paragraph -->\n<p>This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>...or something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>As a new WordPress user, you should go to <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!</p>\n<!-- /wp:paragraph -->','Sample Page','','publish','closed','open','','sample-page','','','2023-07-10 12:18:29','2023-07-10 12:18:29','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?page_id=2',0,'page','',0),(3,1,'2023-07-10 12:18:29','2023-07-10 12:18:29','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://healthcaremarketing.in8.cdn-alpha.com.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2023-07-10 12:18:29','2023-07-10 12:18:29','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?page_id=3',0,'page','',0),(4,1,'2023-07-10 12:28:11','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-07-10 12:28:11','0000-00-00 00:00:00','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?p=4',0,'post','',0),(5,1,'2023-07-10 18:12:57','2023-07-10 12:42:57','','Default Kit','','publish','closed','closed','','default-kit','','','2023-07-10 18:12:57','2023-07-10 12:42:57','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?p=5',0,'elementor_library','',0),(7,1,'2023-07-10 18:19:21','2023-07-10 12:49:21','','001-phone-call.png','','inherit','open','closed','','001-phone-call-png','','','2023-07-10 18:19:21','2023-07-10 12:49:21','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/001-phone-call.png',0,'attachment','image/png',0),(8,1,'2023-07-10 18:19:22','2023-07-10 12:49:22','','line.png','','inherit','open','closed','','line-png','','','2023-07-10 18:19:22','2023-07-10 12:49:22','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/line.png',0,'attachment','image/png',0),(9,1,'2023-07-10 18:19:23','2023-07-10 12:49:23','','002-email.png','','inherit','open','closed','','002-email-png','','','2023-07-10 18:19:23','2023-07-10 12:49:23','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/002-email.png',0,'attachment','image/png',0),(10,1,'2023-07-10 18:19:24','2023-07-10 12:49:24','','logotype.png','','inherit','open','closed','','logotype-png','','','2023-07-10 18:19:24','2023-07-10 12:49:24','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/logotype.png',0,'attachment','image/png',0),(11,1,'2023-07-10 18:19:24','2023-07-10 12:49:24','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"406\" height=\"406\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/001-phone-call.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/001-phone-call.png 406w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/001-phone-call-300x300.png 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/001-phone-call-150x150.png 150w\" sizes=\"(max-width: 406px) 100vw, 406px\" />															\n		+0 (555) 123 45 67		\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/line-q97j1l3nd5tv0i9w2qjrl22hpfp5fiwusobfz2nqc2.png\" title=\"line.png\" alt=\"line.png\" loading=\"lazy\" />															\n															<img width=\"512\" height=\"352\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/002-email.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/002-email.png 512w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/002-email-300x206.png 300w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		sales@yoursite.comFollow Us :		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Dribbble\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-instagram-1\n											</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		yeasty','Main Header','','publish','closed','closed','','main-header','','','2023-07-10 18:19:25','2023-07-10 12:49:25','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=main-header',0,'elementor_library','',0),(13,1,'2023-07-10 18:19:25','2023-07-10 12:49:25','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"406\" height=\"406\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/001-phone-call.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/001-phone-call.png 406w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/001-phone-call-300x300.png 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/001-phone-call-150x150.png 150w\" sizes=\"(max-width: 406px) 100vw, 406px\" />															\n		+0 (555) 123 45 67		\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/line-q97j1l3nd5tv0i9w2qjrl22hpfp5fiwusobfz2nqc2.png\" title=\"line.png\" alt=\"line.png\" loading=\"lazy\" />															\n															<img width=\"512\" height=\"352\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/002-email.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/002-email.png 512w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/002-email-300x206.png 300w\" sizes=\"(max-width: 512px) 100vw, 512px\" />															\n		sales@yoursite.comFollow Us :		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Facebook-f\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Dribbble\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-instagram-1\n											</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		yeasty','Main Header','','inherit','closed','closed','','11-revision-v1','','','2023-07-10 18:19:25','2023-07-10 12:49:25','',11,'https://healthcaremarketing.in8.cdn-alpha.com/?p=13',0,'revision','',0),(15,1,'2023-07-10 18:19:36','2023-07-10 12:49:36','','Kit Styles: Yeasty','','publish','closed','closed','','global-kit-styles','','','2023-07-10 18:19:37','2023-07-10 12:49:37','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=global-kit-styles',0,'elementor_library','',0),(16,1,'2023-07-10 18:19:37','2023-07-10 12:49:37','','Global Kit Styles','','inherit','closed','closed','','15-revision-v1','','','2023-07-10 18:19:37','2023-07-10 12:49:37','',15,'https://healthcaremarketing.in8.cdn-alpha.com/?p=16',0,'revision','',0),(17,1,'2023-07-10 18:19:37','2023-07-10 12:49:37','','Global Kit Styles','','inherit','closed','closed','','15-revision-v1','','','2023-07-10 18:19:37','2023-07-10 12:49:37','',15,'https://healthcaremarketing.in8.cdn-alpha.com/?p=17',0,'revision','',0),(18,1,'2023-07-10 18:19:37','2023-07-10 12:49:37','','Kit Styles: Yeasty','','inherit','closed','closed','','15-revision-v1','','','2023-07-10 18:19:37','2023-07-10 12:49:37','',15,'https://healthcaremarketing.in8.cdn-alpha.com/?p=18',0,'revision','',0),(19,1,'2023-07-10 18:21:02','2023-07-10 12:51:02','','Home3-bg1.png','','inherit','open','closed','','home3-bg1-png','','','2023-07-10 18:21:02','2023-07-10 12:51:02','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Home3-bg1.png',0,'attachment','image/png',0),(32,1,'2023-07-10 18:26:56','2023-07-10 12:56:56','','Home','','trash','closed','closed','','home__trashed','','','2023-07-16 01:13:55','2023-07-15 19:43:55','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?page_id=32',0,'page','',0),(33,1,'2023-07-10 18:26:56','2023-07-10 12:56:56','','Home','','inherit','closed','closed','','32-revision-v1','','','2023-07-10 18:26:56','2023-07-10 12:56:56','',32,'https://healthcaremarketing.in8.cdn-alpha.com/?p=33',0,'revision','',0),(34,1,'2023-07-10 18:29:30','2023-07-10 12:59:30','','TDV_M86_03.jpg','','inherit','open','closed','','tdv_m86_03-jpg','','','2023-07-10 18:29:30','2023-07-10 12:59:30','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/TDV_M86_03.jpg',0,'attachment','image/jpeg',0),(35,1,'2023-07-10 18:29:32','2023-07-10 12:59:32','','bgBlueSmall.png','','inherit','open','closed','','bgbluesmall-png','','','2023-07-10 18:29:32','2023-07-10 12:59:32','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/bgBlueSmall.png',0,'attachment','image/png',0),(36,1,'2023-07-10 18:29:33','2023-07-10 12:59:33','','statistic.png','','inherit','open','closed','','statistic-png','','','2023-07-10 18:29:33','2023-07-10 12:59:33','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/statistic.png',0,'attachment','image/png',0),(37,1,'2023-07-10 18:29:34','2023-07-10 12:59:34','','pay_per_click.png','','inherit','open','closed','','pay_per_click-png','','','2023-07-10 18:29:34','2023-07-10 12:59:34','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/pay_per_click.png',0,'attachment','image/png',0),(38,1,'2023-07-10 18:29:35','2023-07-10 12:59:35','','Keyword.png','','inherit','open','closed','','keyword-png','','','2023-07-10 18:29:35','2023-07-10 12:59:35','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Keyword.png',0,'attachment','image/png',0),(39,1,'2023-07-10 18:29:36','2023-07-10 12:59:36','','Ecommerce.png','','inherit','open','closed','','ecommerce-png','','','2023-07-10 18:29:36','2023-07-10 12:59:36','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Ecommerce.png',0,'attachment','image/png',0),(40,1,'2023-07-10 18:29:37','2023-07-10 12:59:37','','TDV_M86_01.jpg','','inherit','open','closed','','tdv_m86_01-jpg','','','2023-07-10 18:29:37','2023-07-10 12:59:37','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/TDV_M86_01.jpg',0,'attachment','image/jpeg',0),(41,1,'2023-07-10 18:29:38','2023-07-10 12:59:38','','bgYellowBig.png','','inherit','open','closed','','bgyellowbig-png','','','2023-07-10 18:29:38','2023-07-10 12:59:38','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/bgYellowBig.png',0,'attachment','image/png',0),(42,1,'2023-07-10 18:29:40','2023-07-10 12:59:40','','successful-company-with-happy-workers-business-mee-C6QWCVG2x.jpg','','inherit','open','closed','','successful-company-with-happy-workers-business-mee-c6qwcvg2x-jpg','','','2023-07-10 18:29:40','2023-07-10 12:59:40','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/successful-company-with-happy-workers-business-mee-C6QWCVG2x.jpg',0,'attachment','image/jpeg',0),(43,1,'2023-07-10 18:29:41','2023-07-10 12:59:41','','young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x.jpg','','inherit','open','closed','','young-asian-businesswoman-smiling-confidently-in-a-4h6msak2x-jpg','','','2023-07-10 18:29:41','2023-07-10 12:59:41','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x.jpg',0,'attachment','image/jpeg',0),(44,1,'2023-07-10 18:29:42','2023-07-10 12:59:42','','african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1.jpg','','inherit','open','closed','','african-designer-smiling-confidently-after-an-offi-pslkczu2x-1-jpg','','','2023-07-10 18:29:42','2023-07-10 12:59:42','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1.jpg',0,'attachment','image/jpeg',0),(45,1,'2023-07-10 18:29:43','2023-07-10 12:59:43','','smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x.jpg','','inherit','open','closed','','smiling-designer-standing-in-an-office-with-cowork-g9syflx2x-jpg','','','2023-07-10 18:29:43','2023-07-10 12:59:43','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x.jpg',0,'attachment','image/jpeg',0),(46,1,'2023-07-10 18:29:44','2023-07-10 12:59:44','','TDV_M86_02.jpg','','inherit','open','closed','','tdv_m86_02-jpg','','','2023-07-10 18:29:44','2023-07-10 12:59:44','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/TDV_M86_02.jpg',0,'attachment','image/jpeg',0),(47,1,'2023-07-10 18:29:46','2023-07-10 12:59:46','','email.png','','inherit','open','closed','','email-png','','','2023-07-10 18:29:46','2023-07-10 12:59:46','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/email.png',0,'attachment','image/png',0),(48,1,'2023-07-10 18:29:47','2023-07-10 12:59:47','','Social_Media.png','','inherit','open','closed','','social_media-png','','','2023-07-10 18:29:47','2023-07-10 12:59:47','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Social_Media.png',0,'attachment','image/png',0),(49,1,'2023-07-10 18:29:48','2023-07-10 12:59:48','','TDV_M86_010-1.jpg','','inherit','open','closed','','tdv_m86_010-1-jpg','','','2023-07-10 18:29:48','2023-07-10 12:59:48','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/TDV_M86_010-1.jpg',0,'attachment','image/jpeg',0),(50,1,'2023-07-10 18:29:50','2023-07-10 12:59:50','','TDV_M86_07.jpg','','inherit','open','closed','','tdv_m86_07-jpg','','','2023-07-10 18:29:50','2023-07-10 12:59:50','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/TDV_M86_07.jpg',0,'attachment','image/jpeg',0),(51,1,'2023-07-10 18:29:52','2023-07-10 12:59:52','','TDV_M86_09.jpg','','inherit','open','closed','','tdv_m86_09-jpg','','','2023-07-10 18:29:52','2023-07-10 12:59:52','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/TDV_M86_09.jpg',0,'attachment','image/jpeg',0),(52,1,'2023-07-10 18:29:54','2023-07-10 12:59:54','','TDV_M86_03-1.jpg','','inherit','open','closed','','tdv_m86_03-1-jpg','','','2023-07-10 18:29:54','2023-07-10 12:59:54','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/TDV_M86_03-1.jpg',0,'attachment','image/jpeg',0),(53,1,'2023-07-10 18:29:55','2023-07-10 12:59:55','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Best-Rated Global Digital Marketing Agency</h1>		\n		Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim.		\n			<a href=\"#\">\n						Read More\n					</a>\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE PROVIDE DIGITAL SERVICES</h2>		\n			<h2>Unique Solutions For Your Business</h2>		\n		Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation adipiscing elit, sed do eiusmod tempor incididunt.Ut enim ad minim veniam, quis nostrud exercitation adipiscing elit, sed do eiusmod tempor incididunt.		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"278\" height=\"278\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/statistic.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/statistic.png 278w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/statistic-150x150.png 150w\" sizes=\"(max-width: 278px) 100vw, 278px\" />															\n			<h5>Organic Search (SEO)</h5>		\n		Sed ut perspiciatis unde omnis und\nnatus error sit voluptatem.		\n			<a href=\"#\">\n						Read More\n					</a>\n															<img width=\"278\" height=\"278\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/pay_per_click.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/pay_per_click.png 278w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/pay_per_click-150x150.png 150w\" sizes=\"(max-width: 278px) 100vw, 278px\" />															\n			<h5>Pay-Per-Click (PPC)</h5>		\n		Sed ut perspiciatis unde omnis und\nnatus error sit voluptatem.		\n			<a href=\"#\">\n						Read More\n					</a>\n															<img width=\"278\" height=\"278\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Keyword.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Keyword.png 278w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Keyword-150x150.png 150w\" sizes=\"(max-width: 278px) 100vw, 278px\" />															\n			<h5>Custom Solutions</h5>		\n		Sed ut perspiciatis unde omnis und\nnatus error sit voluptatem.		\n			<a href=\"#\">\n						Read More\n					</a>\n															<img width=\"278\" height=\"278\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Ecommerce.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Ecommerce.png 278w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Ecommerce-150x150.png 150w\" sizes=\"(max-width: 278px) 100vw, 278px\" />															\n			<h5>Amazon SEO</h5>		\n		Sed ut perspiciatis unde omnis und\nnatus error sit voluptatem.		\n			<a href=\"#\">\n						Read More\n					</a>\n			<h6>integrated approach</h6>		\n			<h2>We Offer Client Oriented Marketing Services</h2>		\n		Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation adipiscing elit, sed do eiusmod.		\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h2>Leadership</h2>		\n			<h2>Learn About Our Team</h2>		\n		Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, xercitation ullamco.		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/successful-company-with-happy-workers-business-mee-C6QWCVG2x-q97jhq0395m0d5r7vq6vb5oje9io7x9vpzwtj6xu4o.jpg\" title=\"successful-company-with-happy-workers-business-mee-C6QWCVG2x.jpg\" alt=\"successful-company-with-happy-workers-business-mee-C6QWCVG2x.jpg\" loading=\"lazy\" /></figure><h5>Richard Brexton</h5><p>Financial Director</p>		\n			<figure><img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x-q97jhqxxfznaorpuq8lhvnfzzne1fmdm24kb0gwfyg.jpg\" title=\"young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x.jpg\" alt=\"young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x.jpg\" loading=\"lazy\" /></figure><h5>Anna Dowson</h5><p>Chief Manager</p>		\n			<figure><img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1-q97jhrvrmtol0dohkr04g57gl19enbhce97shqv1s8.jpg\" title=\"african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1.jpg\" alt=\"african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1.jpg\" loading=\"lazy\" /></figure><h5>Chad Franklin</h5><p>Creative Director</p>		\n			<figure><img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x-q97jhstltnpvbzn4f9er0myx6f4rv0l2qdv9z0tnm0.jpg\" title=\"smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x.jpg\" alt=\"smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x.jpg\" loading=\"lazy\" /></figure><h5>Laura Jones</h5><p>SEO Expert</p>		\n			<h6>Individual Approach</h6>		\n			<h2>Just Taking Care Of Your Business</h2>		\n		Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim.		\n															<img width=\"267\" height=\"278\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/email.png\" alt=\"\" loading=\"lazy\" />															\n			Marketing		\n															<img width=\"320\" height=\"320\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Social_Media.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Social_Media.png 320w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Social_Media-300x300.png 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Social_Media-150x150.png 150w\" sizes=\"(max-width: 320px) 100vw, 320px\" />															\n			Branding		\n			<h2>package offer</h2>		\n			<h2>Our Special Offers</h2>','Home 3','','publish','closed','closed','','home-3','','','2023-07-10 18:29:56','2023-07-10 12:59:56','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=home-3',0,'elementor_library','',0),(54,1,'2023-07-10 18:29:56','2023-07-10 12:59:56','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Best-Rated Global Digital Marketing Agency</h1>		\n		Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim.		\n			<a href=\"#\">\n						Read More\n					</a>\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE PROVIDE DIGITAL SERVICES</h2>		\n			<h2>Unique Solutions For Your Business</h2>		\n		Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation adipiscing elit, sed do eiusmod tempor incididunt.Ut enim ad minim veniam, quis nostrud exercitation adipiscing elit, sed do eiusmod tempor incididunt.		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"278\" height=\"278\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/statistic.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/statistic.png 278w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/statistic-150x150.png 150w\" sizes=\"(max-width: 278px) 100vw, 278px\" />															\n			<h5>Organic Search (SEO)</h5>		\n		Sed ut perspiciatis unde omnis und\nnatus error sit voluptatem.		\n			<a href=\"#\">\n						Read More\n					</a>\n															<img width=\"278\" height=\"278\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/pay_per_click.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/pay_per_click.png 278w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/pay_per_click-150x150.png 150w\" sizes=\"(max-width: 278px) 100vw, 278px\" />															\n			<h5>Pay-Per-Click (PPC)</h5>		\n		Sed ut perspiciatis unde omnis und\nnatus error sit voluptatem.		\n			<a href=\"#\">\n						Read More\n					</a>\n															<img width=\"278\" height=\"278\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Keyword.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Keyword.png 278w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Keyword-150x150.png 150w\" sizes=\"(max-width: 278px) 100vw, 278px\" />															\n			<h5>Custom Solutions</h5>		\n		Sed ut perspiciatis unde omnis und\nnatus error sit voluptatem.		\n			<a href=\"#\">\n						Read More\n					</a>\n															<img width=\"278\" height=\"278\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Ecommerce.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Ecommerce.png 278w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Ecommerce-150x150.png 150w\" sizes=\"(max-width: 278px) 100vw, 278px\" />															\n			<h5>Amazon SEO</h5>		\n		Sed ut perspiciatis unde omnis und\nnatus error sit voluptatem.		\n			<a href=\"#\">\n						Read More\n					</a>\n			<h6>integrated approach</h6>		\n			<h2>We Offer Client Oriented Marketing Services</h2>		\n		Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation adipiscing elit, sed do eiusmod.		\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h2>Leadership</h2>		\n			<h2>Learn About Our Team</h2>		\n		Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, xercitation ullamco.		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/successful-company-with-happy-workers-business-mee-C6QWCVG2x-q97jhq0395m0d5r7vq6vb5oje9io7x9vpzwtj6xu4o.jpg\" title=\"successful-company-with-happy-workers-business-mee-C6QWCVG2x.jpg\" alt=\"successful-company-with-happy-workers-business-mee-C6QWCVG2x.jpg\" loading=\"lazy\" /></figure><h5>Richard Brexton</h5><p>Financial Director</p>		\n			<figure><img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x-q97jhqxxfznaorpuq8lhvnfzzne1fmdm24kb0gwfyg.jpg\" title=\"young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x.jpg\" alt=\"young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x.jpg\" loading=\"lazy\" /></figure><h5>Anna Dowson</h5><p>Chief Manager</p>		\n			<figure><img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1-q97jhrvrmtol0dohkr04g57gl19enbhce97shqv1s8.jpg\" title=\"african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1.jpg\" alt=\"african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1.jpg\" loading=\"lazy\" /></figure><h5>Chad Franklin</h5><p>Creative Director</p>		\n			<figure><img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x-q97jhstltnpvbzn4f9er0myx6f4rv0l2qdv9z0tnm0.jpg\" title=\"smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x.jpg\" alt=\"smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x.jpg\" loading=\"lazy\" /></figure><h5>Laura Jones</h5><p>SEO Expert</p>		\n			<h6>Individual Approach</h6>		\n			<h2>Just Taking Care Of Your Business</h2>		\n		Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim.		\n															<img width=\"267\" height=\"278\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/email.png\" alt=\"\" loading=\"lazy\" />															\n			Marketing		\n															<img width=\"320\" height=\"320\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Social_Media.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Social_Media.png 320w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Social_Media-300x300.png 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Social_Media-150x150.png 150w\" sizes=\"(max-width: 320px) 100vw, 320px\" />															\n			Branding		\n			<h2>package offer</h2>		\n			<h2>Our Special Offers</h2>','Home 3','','inherit','closed','closed','','53-revision-v1','','','2023-07-10 18:29:56','2023-07-10 12:59:56','',53,'https://healthcaremarketing.in8.cdn-alpha.com/?p=54',0,'revision','',0),(55,1,'2023-07-10 18:33:22','2023-07-10 13:03:22','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>your Health care digital marketing agency</h1>		\n		<p>Boost your online presence and patient engagement with our expert digital marketing strategies tailored specifically for the healthcare industry.</p>		\n			<a href=\"#\">\n						Read More\n					</a>\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			<h2>WE PROVIDE DIGITAL SERVICES</h2>		\n			<h2>Unique Solutions For Your Business</h2>		\n		Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation adipiscing elit, sed do eiusmod tempor incididunt.Ut enim ad minim veniam, quis nostrud exercitation adipiscing elit, sed do eiusmod tempor incididunt.		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"278\" height=\"278\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/statistic.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/statistic.png 278w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/statistic-150x150.png 150w\" sizes=\"(max-width: 278px) 100vw, 278px\" />															\n			<h5>Organic Search (SEO)</h5>		\n		Sed ut perspiciatis unde omnis und\nnatus error sit voluptatem.		\n			<a href=\"#\">\n						Read More\n					</a>\n															<img width=\"278\" height=\"278\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/pay_per_click.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/pay_per_click.png 278w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/pay_per_click-150x150.png 150w\" sizes=\"(max-width: 278px) 100vw, 278px\" />															\n			<h5>Pay-Per-Click (PPC)</h5>		\n		Sed ut perspiciatis unde omnis und\nnatus error sit voluptatem.		\n			<a href=\"#\">\n						Read More\n					</a>\n															<img width=\"278\" height=\"278\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Keyword.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Keyword.png 278w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Keyword-150x150.png 150w\" sizes=\"(max-width: 278px) 100vw, 278px\" />															\n			<h5>Custom Solutions</h5>		\n		Sed ut perspiciatis unde omnis und\nnatus error sit voluptatem.		\n			<a href=\"#\">\n						Read More\n					</a>\n															<img width=\"278\" height=\"278\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Ecommerce.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Ecommerce.png 278w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Ecommerce-150x150.png 150w\" sizes=\"(max-width: 278px) 100vw, 278px\" />															\n			<h5>Amazon SEO</h5>		\n		Sed ut perspiciatis unde omnis und\nnatus error sit voluptatem.		\n			<a href=\"#\">\n						Read More\n					</a>\n			<h6>integrated approach</h6>		\n			<h2>We Offer Client Oriented Marketing Services</h2>		\n		Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation adipiscing elit, sed do eiusmod.		\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h2>Leadership</h2>		\n			<h2>Learn About Our Team</h2>		\n		Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, xercitation ullamco.		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-image-box .elementor-image-box-content{width:100%}@media (min-width:768px){.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper,.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{display:flex}.elementor-widget-image-box.elementor-position-right .elementor-image-box-wrapper{text-align:right;flex-direction:row-reverse}.elementor-widget-image-box.elementor-position-left .elementor-image-box-wrapper{text-align:left;flex-direction:row}.elementor-widget-image-box.elementor-position-top .elementor-image-box-img{margin:auto}.elementor-widget-image-box.elementor-vertical-align-top .elementor-image-box-wrapper{align-items:flex-start}.elementor-widget-image-box.elementor-vertical-align-middle .elementor-image-box-wrapper{align-items:center}.elementor-widget-image-box.elementor-vertical-align-bottom .elementor-image-box-wrapper{align-items:flex-end}}@media (max-width:767px){.elementor-widget-image-box .elementor-image-box-img{margin-left:auto!important;margin-right:auto!important;margin-bottom:15px}}.elementor-widget-image-box .elementor-image-box-img{display:inline-block}.elementor-widget-image-box .elementor-image-box-title a{color:inherit}.elementor-widget-image-box .elementor-image-box-wrapper{text-align:center}.elementor-widget-image-box .elementor-image-box-description{margin:0}</style><figure><img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/successful-company-with-happy-workers-business-mee-C6QWCVG2x-q97jhq0395m0d5r7vq6vb5oje9io7x9vpzwta9fmdc.jpg\" title=\"successful-company-with-happy-workers-business-mee-C6QWCVG2x.jpg\" alt=\"successful-company-with-happy-workers-business-mee-C6QWCVG2x.jpg\" loading=\"lazy\" /></figure><h5>Richard Brexton</h5><p>Financial Director</p>		\n			<figure><img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x-q97jhqxxfznaorpuq8lhvnfzzne1fmdm24karje874.jpg\" title=\"young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x.jpg\" alt=\"young-asian-businesswoman-smiling-confidently-in-a-4H6MSAK2x.jpg\" loading=\"lazy\" /></figure><h5>Anna Dowson</h5><p>Chief Manager</p>		\n			<figure><img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1-q97jhrvrmtol0dohkr04g57gl19enbhce97s8tcu0w.jpg\" title=\"african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1.jpg\" alt=\"african-designer-smiling-confidently-after-an-offi-PSLKCZU2x-1.jpg\" loading=\"lazy\" /></figure><h5>Chad Franklin</h5><p>Creative Director</p>		\n			<figure><img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x-q97jhstltnpvbzn4f9er0myx6f4rv0l2qdv9q3bfuo.jpg\" title=\"smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x.jpg\" alt=\"smiling-designer-standing-in-an-office-with-cowork-G9SYFLX2x.jpg\" loading=\"lazy\" /></figure><h5>Laura Jones</h5><p>SEO Expert</p>		\n			<h6>Individual Approach</h6>		\n			<h2>Just Taking Care Of Your Business</h2>		\n		Adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim.		\n															<img width=\"267\" height=\"278\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/email.png\" alt=\"\" loading=\"lazy\" />															\n			Marketing		\n															<img width=\"320\" height=\"320\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Social_Media.png\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Social_Media.png 320w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Social_Media-300x300.png 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Social_Media-150x150.png 150w\" sizes=\"(max-width: 320px) 100vw, 320px\" />															\n			Branding		\n			<h2>package offer</h2>		\n			<h2>Our Special Offers</h2>','Home','','inherit','closed','closed','','32-autosave-v1','','','2023-07-11 11:07:26','2023-07-11 05:37:26','',32,'https://healthcaremarketing.in8.cdn-alpha.com/?p=55',0,'revision','',0),(57,1,'2023-07-16 01:38:35','2023-07-15 20:08:35','','Mindary – Psychology and Counseling Elementor Template Kit','','publish','closed','closed','','mindary-psychology-and-counseling-elementor-template-kit','','','2023-07-16 01:38:35','2023-07-15 20:08:35','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?envato_tk_import=mindary-psychology-and-counseling-elementor-template-kit',0,'envato_tk_import','',0),(58,1,'2023-07-16 01:44:49','2023-07-15 20:14:49','','Kit Styles: Mindary – Psychology and Counseling Elementor Template Kit','','publish','closed','closed','','global-kit-styles-2','','','2023-07-19 13:59:37','2023-07-19 08:29:37','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=global-kit-styles-2',0,'elementor_library','',0),(59,1,'2023-07-16 01:44:50','2023-07-15 20:14:50','','Global Kit Styles','','inherit','closed','closed','','58-revision-v1','','','2023-07-16 01:44:50','2023-07-15 20:14:50','',58,'https://healthcaremarketing.in8.cdn-alpha.com/?p=59',0,'revision','',0),(60,1,'2023-07-16 01:44:50','2023-07-15 20:14:50','','Global Kit Styles','','inherit','closed','closed','','58-revision-v1','','','2023-07-16 01:44:50','2023-07-15 20:14:50','',58,'https://healthcaremarketing.in8.cdn-alpha.com/?p=60',0,'revision','',0),(61,1,'2023-07-16 01:44:50','2023-07-15 20:14:50','','Kit Styles: Mindary – Psychology and Counseling Elementor Template Kit','','inherit','closed','closed','','58-revision-v1','','','2023-07-16 01:44:50','2023-07-15 20:14:50','',58,'https://healthcaremarketing.in8.cdn-alpha.com/?p=61',0,'revision','',0),(62,1,'2023-07-16 01:44:54','2023-07-15 20:14:54','','professional-providing-psychological-counseling-indoors.jpg','','inherit','open','closed','','professional-providing-psychological-counseling-indoors-jpg','','','2023-07-16 01:44:54','2023-07-15 20:14:54','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/professional-providing-psychological-counseling-indoors.jpg',0,'attachment','image/jpeg',0),(63,1,'2023-07-16 01:44:54','2023-07-15 20:14:54','','african-man-in-mental-health-consultation.jpg','','inherit','open','closed','','african-man-in-mental-health-consultation-jpg','','','2023-07-16 01:44:54','2023-07-15 20:14:54','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/african-man-in-mental-health-consultation.jpg',0,'attachment','image/jpeg',0),(64,1,'2023-07-16 01:44:55','2023-07-15 20:14:55','<label for=\"mf-input-text-79667c10\">\n					${ parent.decodeEntities(`Name`) } 					\n				</label>\n			<input\n				type=\"text\"\n				class=\"mf-input \"\n				id=\"mf-input-text-79667c10\"\n				name=\"mf-first-name\"\n				placeholder=\"${ parent.decodeEntities(`Your Name`) } \"\n									onInput=${parent.handleChange}\n					onBlur=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-first-name\'] ? \'true\' : \'false\'}\n					ref=${el =>{\n												parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)\n					}}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-first-name\"\n					as=${html``}\n					/>\n							<label for=\"mf-input-email-940f64b\">\n					${ parent.decodeEntities(`Email`) } 					\n				</label>\n			<input \n				type=\"email\" \n				defaultValue=\"\" \n				class=\"mf-input \" \n				id=\"mf-input-email-940f64b\" \n				name=\"mf-email\" \n				placeholder=\"${ parent.decodeEntities(`Your Email`) } \" \n				onBlur=${parent.handleChange} onFocus=${parent.handleChange} aria-invalid=${validation.errors[\'mf-email\'] ? \'true\' : \'false\' } \n				ref=${el=> parent.activateValidation({\"message\":\"This field is required.\",\"emailMessage\":\"Please enter a valid Email address\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n							/>\n						<${validation.ErrorMessage} \n				errors=${validation.errors} \n				name=\"mf-email\" \n				as=${html``}\n			/>\n							<label for=\"mf-input-telephone-217d16bd\">\n					${ parent.decodeEntities(`Telephone`) } 					\n				</label>\n			<input\n				type=\"tel\"\n				class=\"mf-input \"\n				id=\"mf-input-telephone-217d16bd\" \n				name=\"mf-telephone\"\n				placeholder=\"${ parent.decodeEntities(`Your Phone`) } \"\n									onInput=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-telephone\'] ? \'true\' : \'false\'}\n					ref=${el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-telephone\"\n					as=${html``}\n					/>\n							<label className=\"mf-input-label\" htmlFor=\"mf-input-date-1c13ce3\">\n					${ parent.decodeEntities(`Date`) } 					\n				</label>\n			<${props.Flatpickr}\n					name=\"mf-date\"\n					className=\"mf-input mf-date-input mf-left-parent \"\n					placeholder=\"${ parent.decodeEntities(`Date`) } \"\n					options=${{\"minDate\":\"\",\"maxDate\":\"\",\"dateFormat\":\"m-d-Y\",\"enableTime\":\"\",\"disable\":[],\"mode\":\"single\",\"static\":true,\"disableMobile\":true,\"time_24hr\":false}}\n					value=${parent.getValue(\'mf-date\')}\n					onInput=${parent.handleDateTime}\n					aria-invalid=${validation.errors[\'mf-date\'] ? \'true\' : \'false\'}\n					ref=${el => props.DateWidget(\n							el, \n							\'\', \n							{\"message\":\"This field is required.\",\"required\":false},  \n							register, \n							parent \n						)}\n					/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-date\"\n					as=${html``}\n					/>\n							<label className=\"mf-input-label\" htmlFor=\"mf-input-select-151e3ad8\">\n					${ parent.decodeEntities(`Type`) } 					\n				</label>\n            <${props.Select}\n                className=${\"mf-input mf-input-select  \" + ( validation.errors[\'mf-select\'] ? \'mf-invalid\' : \'\' )}\n                classNamePrefix=\"mf_select\"\n                name=\"mf-select\"\n                placeholder=\"${ parent.decodeEntities(`Type Counseling`) } \"\n                isSearchable=${false}\n                options=${[{\"label\":\"Online Counseling\",\"value\":\"value-1\",\"isDisabled\":false},{\"label\":\"Offline Counseling\",\"value\":\"value-2\",\"isDisabled\":false}]}\n                value=${parent.getValue(\"mf-select\") ? [{\"label\":\"Online Counseling\",\"value\":\"value-1\",\"isDisabled\":false},{\"label\":\"Offline Counseling\",\"value\":\"value-2\",\"isDisabled\":false}].filter(item => item.value === parent.getValue(\"mf-select\"))[0] : []}\n                onChange=${(e)=> parent.handleSelect(e, \"mf-select\")}\n                ref=${() => {\n				                    register({ name: \"mf-select\" }, parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false}));\n                    if ( parent.getValue(\"mf-select\") === \'\' && false ) {\n				    parent.setValue( \'mf-select\', \'\', true );\n                        parent.handleChange({\n                            target: {\n                                name: \'mf-select\',\n                                value: \'\'\n                            }\n                        });\n                    }\n                }}\n                />\n            				<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-select\"\n					as=${html``}\n					/>\n							<label className=\"mf-input-label\" htmlFor=\"mf-input-select-4592a6b5\">\n					${ parent.decodeEntities(`Service`) } 					\n				</label>\n            <${props.Select}\n                className=${\"mf-input mf-input-select  \" + ( validation.errors[\'mf-select\'] ? \'mf-invalid\' : \'\' )}\n                classNamePrefix=\"mf_select\"\n                name=\"mf-select\"\n                placeholder=\"${ parent.decodeEntities(`Select Service`) } \"\n                isSearchable=${false}\n                options=${[{\"label\":\"Stress Management\",\"value\":\"value-1\",\"isDisabled\":false},{\"label\":\"Depression Problem\",\"value\":\"value-2\",\"isDisabled\":false},{\"label\":\"Family Counseling\",\"value\":\"value-3\",\"isDisabled\":false},{\"label\":\"Anxiety Disorder\",\"value\":\"value-4\",\"isDisabled\":false},{\"label\":\"Couple Counseling\",\"value\":\"value-5\",\"isDisabled\":false}]}\n                value=${parent.getValue(\"mf-select\") ? [{\"label\":\"Stress Management\",\"value\":\"value-1\",\"isDisabled\":false},{\"label\":\"Depression Problem\",\"value\":\"value-2\",\"isDisabled\":false},{\"label\":\"Family Counseling\",\"value\":\"value-3\",\"isDisabled\":false},{\"label\":\"Anxiety Disorder\",\"value\":\"value-4\",\"isDisabled\":false},{\"label\":\"Couple Counseling\",\"value\":\"value-5\",\"isDisabled\":false}].filter(item => item.value === parent.getValue(\"mf-select\"))[0] : []}\n                onChange=${(e)=> parent.handleSelect(e, \"mf-select\")}\n                ref=${() => {\n				                    register({ name: \"mf-select\" }, parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false}));\n                    if ( parent.getValue(\"mf-select\") === \'\' && false ) {\n				    parent.setValue( \'mf-select\', \'\', true );\n                        parent.handleChange({\n                            target: {\n                                name: \'mf-select\',\n                                value: \'\'\n                            }\n                        });\n                    }\n                }}\n                />\n            				<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-select\"\n					as=${html``}\n					/>\n							<label for=\"mf-input-text-area-1b0d3bcf\">\n					${ parent.decodeEntities(`Additional Details`) } 					\n				</label>\n			<textarea id=\"mf-input-text-area-1b0d3bcf\"\n				name=\"mf-comment\" \n				placeholder=\"${ parent.decodeEntities(`Additional Details`) } \"\n				cols=\"30\" rows=\"10\"\n									onInput=${ parent.handleChange }\n					aria-invalid=${validation.errors[\'mf-comment\'] ? \'true\' : \'false\'}\n					ref=${ el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n								></textarea>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-comment\"\n					as=${html``}\n					/>\n							<button type=\"submit\" id=\"\">\n					${ parent.decodeEntities(`Make Appointment`) } \n				</button>','MetForm Appointment','','publish','closed','closed','','metform-appointment','','','2023-07-16 01:44:56','2023-07-15 20:14:56','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=metform-appointment',0,'elementor_library','',0),(65,1,'2023-07-16 01:44:56','2023-07-15 20:14:56','<label for=\"mf-input-text-79667c10\">\n					${ parent.decodeEntities(`Name`) } 					\n				</label>\n			<input\n				type=\"text\"\n				class=\"mf-input \"\n				id=\"mf-input-text-79667c10\"\n				name=\"mf-first-name\"\n				placeholder=\"${ parent.decodeEntities(`Your Name`) } \"\n									onInput=${parent.handleChange}\n					onBlur=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-first-name\'] ? \'true\' : \'false\'}\n					ref=${el =>{\n												parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)\n					}}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-first-name\"\n					as=${html``}\n					/>\n							<label for=\"mf-input-email-940f64b\">\n					${ parent.decodeEntities(`Email`) } 					\n				</label>\n			<input \n				type=\"email\" \n				defaultValue=\"\" \n				class=\"mf-input \" \n				id=\"mf-input-email-940f64b\" \n				name=\"mf-email\" \n				placeholder=\"${ parent.decodeEntities(`Your Email`) } \" \n				onBlur=${parent.handleChange} onFocus=${parent.handleChange} aria-invalid=${validation.errors[\'mf-email\'] ? \'true\' : \'false\' } \n				ref=${el=> parent.activateValidation({\"message\":\"This field is required.\",\"emailMessage\":\"Please enter a valid Email address\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n							/>\n						<${validation.ErrorMessage} \n				errors=${validation.errors} \n				name=\"mf-email\" \n				as=${html``}\n			/>\n							<label for=\"mf-input-telephone-217d16bd\">\n					${ parent.decodeEntities(`Telephone`) } 					\n				</label>\n			<input\n				type=\"tel\"\n				class=\"mf-input \"\n				id=\"mf-input-telephone-217d16bd\" \n				name=\"mf-telephone\"\n				placeholder=\"${ parent.decodeEntities(`Your Phone`) } \"\n									onInput=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-telephone\'] ? \'true\' : \'false\'}\n					ref=${el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-telephone\"\n					as=${html``}\n					/>\n							<label className=\"mf-input-label\" htmlFor=\"mf-input-date-1c13ce3\">\n					${ parent.decodeEntities(`Date`) } 					\n				</label>\n			<${props.Flatpickr}\n					name=\"mf-date\"\n					className=\"mf-input mf-date-input mf-left-parent \"\n					placeholder=\"${ parent.decodeEntities(`Date`) } \"\n					options=${{\"minDate\":\"\",\"maxDate\":\"\",\"dateFormat\":\"m-d-Y\",\"enableTime\":\"\",\"disable\":[],\"mode\":\"single\",\"static\":true,\"disableMobile\":true,\"time_24hr\":false}}\n					value=${parent.getValue(\'mf-date\')}\n					onInput=${parent.handleDateTime}\n					aria-invalid=${validation.errors[\'mf-date\'] ? \'true\' : \'false\'}\n					ref=${el => props.DateWidget(\n							el, \n							\'\', \n							{\"message\":\"This field is required.\",\"required\":false},  \n							register, \n							parent \n						)}\n					/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-date\"\n					as=${html``}\n					/>\n							<label className=\"mf-input-label\" htmlFor=\"mf-input-select-151e3ad8\">\n					${ parent.decodeEntities(`Type`) } 					\n				</label>\n            <${props.Select}\n                className=${\"mf-input mf-input-select  \" + ( validation.errors[\'mf-select\'] ? \'mf-invalid\' : \'\' )}\n                classNamePrefix=\"mf_select\"\n                name=\"mf-select\"\n                placeholder=\"${ parent.decodeEntities(`Type Counseling`) } \"\n                isSearchable=${false}\n                options=${[{\"label\":\"Online Counseling\",\"value\":\"value-1\",\"isDisabled\":false},{\"label\":\"Offline Counseling\",\"value\":\"value-2\",\"isDisabled\":false}]}\n                value=${parent.getValue(\"mf-select\") ? [{\"label\":\"Online Counseling\",\"value\":\"value-1\",\"isDisabled\":false},{\"label\":\"Offline Counseling\",\"value\":\"value-2\",\"isDisabled\":false}].filter(item => item.value === parent.getValue(\"mf-select\"))[0] : []}\n                onChange=${(e)=> parent.handleSelect(e, \"mf-select\")}\n                ref=${() => {\n				                    register({ name: \"mf-select\" }, parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false}));\n                    if ( parent.getValue(\"mf-select\") === \'\' && false ) {\n				    parent.setValue( \'mf-select\', \'\', true );\n                        parent.handleChange({\n                            target: {\n                                name: \'mf-select\',\n                                value: \'\'\n                            }\n                        });\n                    }\n                }}\n                />\n            				<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-select\"\n					as=${html``}\n					/>\n							<label className=\"mf-input-label\" htmlFor=\"mf-input-select-4592a6b5\">\n					${ parent.decodeEntities(`Service`) } 					\n				</label>\n            <${props.Select}\n                className=${\"mf-input mf-input-select  \" + ( validation.errors[\'mf-select\'] ? \'mf-invalid\' : \'\' )}\n                classNamePrefix=\"mf_select\"\n                name=\"mf-select\"\n                placeholder=\"${ parent.decodeEntities(`Select Service`) } \"\n                isSearchable=${false}\n                options=${[{\"label\":\"Stress Management\",\"value\":\"value-1\",\"isDisabled\":false},{\"label\":\"Depression Problem\",\"value\":\"value-2\",\"isDisabled\":false},{\"label\":\"Family Counseling\",\"value\":\"value-3\",\"isDisabled\":false},{\"label\":\"Anxiety Disorder\",\"value\":\"value-4\",\"isDisabled\":false},{\"label\":\"Couple Counseling\",\"value\":\"value-5\",\"isDisabled\":false}]}\n                value=${parent.getValue(\"mf-select\") ? [{\"label\":\"Stress Management\",\"value\":\"value-1\",\"isDisabled\":false},{\"label\":\"Depression Problem\",\"value\":\"value-2\",\"isDisabled\":false},{\"label\":\"Family Counseling\",\"value\":\"value-3\",\"isDisabled\":false},{\"label\":\"Anxiety Disorder\",\"value\":\"value-4\",\"isDisabled\":false},{\"label\":\"Couple Counseling\",\"value\":\"value-5\",\"isDisabled\":false}].filter(item => item.value === parent.getValue(\"mf-select\"))[0] : []}\n                onChange=${(e)=> parent.handleSelect(e, \"mf-select\")}\n                ref=${() => {\n				                    register({ name: \"mf-select\" }, parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false}));\n                    if ( parent.getValue(\"mf-select\") === \'\' && false ) {\n				    parent.setValue( \'mf-select\', \'\', true );\n                        parent.handleChange({\n                            target: {\n                                name: \'mf-select\',\n                                value: \'\'\n                            }\n                        });\n                    }\n                }}\n                />\n            				<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-select\"\n					as=${html``}\n					/>\n							<label for=\"mf-input-text-area-1b0d3bcf\">\n					${ parent.decodeEntities(`Additional Details`) } 					\n				</label>\n			<textarea id=\"mf-input-text-area-1b0d3bcf\"\n				name=\"mf-comment\" \n				placeholder=\"${ parent.decodeEntities(`Additional Details`) } \"\n				cols=\"30\" rows=\"10\"\n									onInput=${ parent.handleChange }\n					aria-invalid=${validation.errors[\'mf-comment\'] ? \'true\' : \'false\'}\n					ref=${ el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n								></textarea>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-comment\"\n					as=${html``}\n					/>\n							<button type=\"submit\" id=\"\">\n					${ parent.decodeEntities(`Make Appointment`) } \n				</button>','MetForm Appointment','','inherit','closed','closed','','64-revision-v1','','','2023-07-16 01:44:56','2023-07-15 20:14:56','',64,'https://healthcaremarketing.in8.cdn-alpha.com/?p=65',0,'revision','',0),(66,1,'2023-07-16 01:44:58','2023-07-15 20:14:58','','counsel-of-students.jpg','','inherit','open','closed','','counsel-of-students-jpg','','','2023-07-16 01:44:58','2023-07-15 20:14:58','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg',0,'attachment','image/jpeg',0),(67,1,'2023-07-16 01:44:58','2023-07-15 20:14:58','','therapy-session-in-the-AK6AHJU.jpg','','inherit','open','closed','','therapy-session-in-the-ak6ahju-jpg','','','2023-07-16 01:44:58','2023-07-15 20:14:58','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg',0,'attachment','image/jpeg',0),(68,1,'2023-07-16 01:45:00','2023-07-15 20:15:00','','counsel-of-students.jpg','','inherit','open','closed','','counsel-of-students-jpg-2','','','2023-07-16 01:45:00','2023-07-15 20:15:00','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1.jpg',0,'attachment','image/jpeg',0),(69,1,'2023-07-16 01:45:00','2023-07-15 20:15:00','','mental-health-concept-communication-session-of-woman-psychologist-and-client.jpg','','inherit','open','closed','','mental-health-concept-communication-session-of-woman-psychologist-and-client-jpg','','','2023-07-16 01:45:00','2023-07-15 20:15:00','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/mental-health-concept-communication-session-of-woman-psychologist-and-client.jpg',0,'attachment','image/jpeg',0),(70,1,'2023-07-16 01:45:00','2023-07-15 20:15:00','','mental-health-concept-communication-session-of-woman-psychologist-and-client.jpg','','inherit','open','closed','','mental-health-concept-communication-session-of-woman-psychologist-and-client-jpg-2','','','2023-07-16 01:45:00','2023-07-15 20:15:00','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/mental-health-concept-communication-session-of-woman-psychologist-and-client-1.jpg',0,'attachment','image/jpeg',0),(71,1,'2023-07-16 01:45:01','2023-07-15 20:15:01','','cropped-shot-of-psychotherapist-writing-on-clipboard-and-female-patient-sitting-on-couch.jpg','','inherit','open','closed','','cropped-shot-of-psychotherapist-writing-on-clipboard-and-female-patient-sitting-on-couch-jpg','','','2023-07-16 01:45:01','2023-07-15 20:15:01','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/cropped-shot-of-psychotherapist-writing-on-clipboard-and-female-patient-sitting-on-couch.jpg',0,'attachment','image/jpeg',0),(72,1,'2023-07-16 01:45:01','2023-07-15 20:15:01','','senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg','','inherit','open','closed','','senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-jpg','','','2023-07-16 01:45:01','2023-07-15 20:15:01','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg',0,'attachment','image/jpeg',0),(73,1,'2023-07-16 01:45:02','2023-07-15 20:15:02','','mature-psychologist-posing-in-group-therapy.jpg','','inherit','open','closed','','mature-psychologist-posing-in-group-therapy-jpg','','','2023-07-16 01:45:02','2023-07-15 20:15:02','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/mature-psychologist-posing-in-group-therapy.jpg',0,'attachment','image/jpeg',0),(74,1,'2023-07-16 01:45:03','2023-07-15 20:15:03','','senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg','','inherit','open','closed','','senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-jpg-2','','','2023-07-16 01:45:03','2023-07-15 20:15:03','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-1-1.jpg',0,'attachment','image/jpeg',0),(75,1,'2023-07-16 01:45:07','2023-07-15 20:15:07','','image.jpg','','inherit','open','closed','','image-jpg','','','2023-07-16 01:45:07','2023-07-15 20:15:07','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg',0,'attachment','image/jpeg',0),(76,1,'2023-07-16 01:45:07','2023-07-15 20:15:07','','senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--e1624799493930.jpg','','inherit','open','closed','','senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-e1624799493930-jpg','','','2023-07-16 01:45:07','2023-07-15 20:15:07','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-e1624799493930.jpg',0,'attachment','image/jpeg',0),(77,1,'2023-07-16 01:45:08','2023-07-15 20:15:08','','mental-health-concept-communication-session-of-woman-psychologist-and-client.jpg','','inherit','open','closed','','mental-health-concept-communication-session-of-woman-psychologist-and-client-jpg-3','','','2023-07-16 01:45:08','2023-07-15 20:15:08','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/mental-health-concept-communication-session-of-woman-psychologist-and-client-2.jpg',0,'attachment','image/jpeg',0),(78,1,'2023-07-16 01:45:08','2023-07-15 20:15:08','','dot-bg.png','','inherit','open','closed','','dot-bg-png','','','2023-07-16 01:45:08','2023-07-15 20:15:08','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/dot-bg.png',0,'attachment','image/png',0),(79,1,'2023-07-16 01:45:08','2023-07-15 20:15:08','','professional-therapist-working-with-fighting-young-couple.jpg','','inherit','open','closed','','professional-therapist-working-with-fighting-young-couple-jpg','','','2023-07-16 01:45:08','2023-07-15 20:15:08','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/professional-therapist-working-with-fighting-young-couple.jpg',0,'attachment','image/jpeg',0),(80,1,'2023-07-16 01:45:10','2023-07-15 20:15:10','','man-in-stress.jpg','','inherit','open','closed','','man-in-stress-jpg','','','2023-07-16 01:45:10','2023-07-15 20:15:10','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/man-in-stress.jpg',0,'attachment','image/jpeg',0),(81,1,'2023-07-16 01:45:11','2023-07-15 20:15:11','<input\n				type=\"text\"\n				class=\"mf-input \"\n				id=\"mf-input-text-68b16ce1\"\n				name=\"mf-first-name\"\n				placeholder=\"${ parent.decodeEntities(`Your Name`) } \"\n									onInput=${parent.handleChange}\n					onBlur=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-first-name\'] ? \'true\' : \'false\'}\n					ref=${el =>{\n												parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)\n					}}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-first-name\"\n					as=${html``}\n					/>\n			<input \n				type=\"email\" \n				defaultValue=\"\" \n				class=\"mf-input \" \n				id=\"mf-input-email-294ce6dc\" \n				name=\"mf-email\" \n				placeholder=\"${ parent.decodeEntities(`Your Email`) } \" \n				onBlur=${parent.handleChange} onFocus=${parent.handleChange} aria-invalid=${validation.errors[\'mf-email\'] ? \'true\' : \'false\' } \n				ref=${el=> parent.activateValidation({\"message\":\"This field is required.\",\"emailMessage\":\"Please enter a valid Email address\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n							/>\n						<${validation.ErrorMessage} \n				errors=${validation.errors} \n				name=\"mf-email\" \n				as=${html``}\n			/>\n			<input\n				type=\"tel\"\n				class=\"mf-input \"\n				id=\"mf-input-telephone-2724add4\" \n				name=\"mf-telephone\"\n				placeholder=\"${ parent.decodeEntities(`Your Phone`) } \"\n									onInput=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-telephone\'] ? \'true\' : \'false\'}\n					ref=${el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-telephone\"\n					as=${html``}\n					/>\n			<input\n				type=\"text\"\n				class=\"mf-input \"\n				id=\"mf-input-text-d105c8a\"\n				name=\"mf-text\"\n				placeholder=\"${ parent.decodeEntities(`Your Subject`) } \"\n									onInput=${parent.handleChange}\n					onBlur=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-text\'] ? \'true\' : \'false\'}\n					ref=${el =>{\n												parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)\n					}}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-text\"\n					as=${html``}\n					/>\n			<textarea id=\"mf-input-text-area-a904abf\"\n				name=\"mf-comment\" \n				placeholder=\"${ parent.decodeEntities(`Your Message`) } \"\n				cols=\"30\" rows=\"10\"\n									onInput=${ parent.handleChange }\n					aria-invalid=${validation.errors[\'mf-comment\'] ? \'true\' : \'false\'}\n					ref=${ el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n								></textarea>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-comment\"\n					as=${html``}\n					/>\n							<button type=\"submit\" id=\"\">\n					${ parent.decodeEntities(`Submit Message`) } \n				</button>','MetForm Contact','','publish','closed','closed','','metform-contact','','','2023-07-16 01:45:12','2023-07-15 20:15:12','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=metform-contact',0,'elementor_library','',0),(82,1,'2023-07-16 01:45:12','2023-07-15 20:15:12','<input\n				type=\"text\"\n				class=\"mf-input \"\n				id=\"mf-input-text-68b16ce1\"\n				name=\"mf-first-name\"\n				placeholder=\"${ parent.decodeEntities(`Your Name`) } \"\n									onInput=${parent.handleChange}\n					onBlur=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-first-name\'] ? \'true\' : \'false\'}\n					ref=${el =>{\n												parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)\n					}}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-first-name\"\n					as=${html``}\n					/>\n			<input \n				type=\"email\" \n				defaultValue=\"\" \n				class=\"mf-input \" \n				id=\"mf-input-email-294ce6dc\" \n				name=\"mf-email\" \n				placeholder=\"${ parent.decodeEntities(`Your Email`) } \" \n				onBlur=${parent.handleChange} onFocus=${parent.handleChange} aria-invalid=${validation.errors[\'mf-email\'] ? \'true\' : \'false\' } \n				ref=${el=> parent.activateValidation({\"message\":\"This field is required.\",\"emailMessage\":\"Please enter a valid Email address\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n							/>\n						<${validation.ErrorMessage} \n				errors=${validation.errors} \n				name=\"mf-email\" \n				as=${html``}\n			/>\n			<input\n				type=\"tel\"\n				class=\"mf-input \"\n				id=\"mf-input-telephone-2724add4\" \n				name=\"mf-telephone\"\n				placeholder=\"${ parent.decodeEntities(`Your Phone`) } \"\n									onInput=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-telephone\'] ? \'true\' : \'false\'}\n					ref=${el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-telephone\"\n					as=${html``}\n					/>\n			<input\n				type=\"text\"\n				class=\"mf-input \"\n				id=\"mf-input-text-d105c8a\"\n				name=\"mf-text\"\n				placeholder=\"${ parent.decodeEntities(`Your Subject`) } \"\n									onInput=${parent.handleChange}\n					onBlur=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-text\'] ? \'true\' : \'false\'}\n					ref=${el =>{\n												parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)\n					}}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-text\"\n					as=${html``}\n					/>\n			<textarea id=\"mf-input-text-area-a904abf\"\n				name=\"mf-comment\" \n				placeholder=\"${ parent.decodeEntities(`Your Message`) } \"\n				cols=\"30\" rows=\"10\"\n									onInput=${ parent.handleChange }\n					aria-invalid=${validation.errors[\'mf-comment\'] ? \'true\' : \'false\'}\n					ref=${ el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)}\n								></textarea>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-comment\"\n					as=${html``}\n					/>\n							<button type=\"submit\" id=\"\">\n					${ parent.decodeEntities(`Submit Message`) } \n				</button>','MetForm Contact','','inherit','closed','closed','','81-revision-v1','','','2023-07-16 01:45:12','2023-07-15 20:15:12','',81,'https://healthcaremarketing.in8.cdn-alpha.com/?p=82',0,'revision','',0),(83,1,'2023-07-16 01:45:12','2023-07-15 20:15:12','','blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg','','inherit','open','closed','','blonde-haired-psychoanalyst-helping-a-man-with-depression-jpg','','','2023-07-16 01:45:12','2023-07-15 20:15:12','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg',0,'attachment','image/jpeg',0),(84,1,'2023-07-16 01:45:13','2023-07-15 20:15:13','','female-psychologist-in-office-FHV8Q5Z.jpg','','inherit','open','closed','','female-psychologist-in-office-fhv8q5z-jpg','','','2023-07-16 01:45:13','2023-07-15 20:15:13','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/female-psychologist-in-office-FHV8Q5Z.jpg',0,'attachment','image/jpeg',0),(85,1,'2023-07-16 01:45:14','2023-07-15 20:15:14','','couple-talking-at-therapy-session-with-male-therapist.jpg','','inherit','open','closed','','couple-talking-at-therapy-session-with-male-therapist-jpg','','','2023-07-16 01:45:14','2023-07-15 20:15:14','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-talking-at-therapy-session-with-male-therapist.jpg',0,'attachment','image/jpeg',0),(86,1,'2023-07-16 01:45:15','2023-07-15 20:15:15','','smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg','','inherit','open','closed','','smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor-jpg','','','2023-07-16 01:45:15','2023-07-15 20:15:15','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/smiling-diverse-women-sitting-in-circle-during-group-therapy-indoor.jpg',0,'attachment','image/jpeg',0),(87,1,'2023-07-16 01:45:16','2023-07-15 20:15:16','','men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg','','inherit','open','closed','','men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-jpg','','','2023-07-16 01:45:16','2023-07-15 20:15:16','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/men-and-women-sitting-in-a-circle-during-group-therapy-supporting-each-other-.jpg',0,'attachment','image/jpeg',0),(88,1,'2023-07-16 01:45:17','2023-07-15 20:15:17','','handshake-of-two-men-successful-business-contacts-after-a-good-deal.jpg','','inherit','open','closed','','handshake-of-two-men-successful-business-contacts-after-a-good-deal-jpg','','','2023-07-16 01:45:17','2023-07-15 20:15:17','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/handshake-of-two-men-successful-business-contacts-after-a-good-deal.jpg',0,'attachment','image/jpeg',0),(89,1,'2023-07-16 01:45:17','2023-07-15 20:15:17','','senior-patient-talking-to-psychologist.jpg','','inherit','open','closed','','senior-patient-talking-to-psychologist-jpg','','','2023-07-16 01:45:17','2023-07-15 20:15:17','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg',0,'attachment','image/jpeg',0),(90,1,'2023-07-16 01:45:18','2023-07-15 20:15:18','','RUUMCJY.png','','inherit','open','closed','','ruumcjy-png','','','2023-07-16 01:45:18','2023-07-15 20:15:18','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png',0,'attachment','image/png',0),(91,1,'2023-07-16 01:45:19','2023-07-15 20:15:19','','senior-patient-talking-to-psychologist.jpg','','inherit','open','closed','','senior-patient-talking-to-psychologist-jpg-2','','','2023-07-16 01:45:19','2023-07-15 20:15:19','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist-1.jpg',0,'attachment','image/jpeg',0),(92,1,'2023-07-16 01:45:20','2023-07-15 20:15:20','','MKLVKTE.jpg','','inherit','open','closed','','mklvkte-jpg','','','2023-07-16 01:45:20','2023-07-15 20:15:20','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/MKLVKTE.jpg',0,'attachment','image/jpeg',0),(93,1,'2023-07-16 01:45:20','2023-07-15 20:15:20','','logo-QQBEZ9C.png','','inherit','open','closed','','logo-qqbez9c-png','','','2023-07-16 01:45:20','2023-07-15 20:15:20','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/logo-QQBEZ9C.png',0,'attachment','image/png',0),(94,1,'2023-07-16 01:45:21','2023-07-15 20:15:21','','psychologist-in-office-WAUZF95.jpg','','inherit','open','closed','','psychologist-in-office-wauzf95-jpg','','','2023-07-16 01:45:21','2023-07-15 20:15:21','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/psychologist-in-office-WAUZF95.jpg',0,'attachment','image/jpeg',0),(95,1,'2023-07-16 01:45:21','2023-07-15 20:15:21','','logo-QQBEZ9C.png','','inherit','open','closed','','logo-qqbez9c-png-2','','','2023-07-16 01:45:21','2023-07-15 20:15:21','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/logo-QQBEZ9C-1.png',0,'attachment','image/png',0),(96,1,'2023-07-16 01:45:22','2023-07-15 20:15:22','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>FAQ</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										FAQ\n									</li>\n						</ul>\n			<h5>FAQ</h5>		\n			<h2>Popular Question</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n                        <a href=\"#collapse-6c3aab064b2fe5ae7063\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-6c3aab064b2fe5ae7063\" aria-expanded=\"true\" aria-controls=\"Collapse-6c3aab064b2fe5ae7063\">\n                             How to Make an Appointment for Group Service?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-320303564b2fe5ae7063\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-320303564b2fe5ae7063\" aria-expanded=\"false\" aria-controls=\"Collapse-320303564b2fe5ae7063\">\n                            How Long Will My Treatment Go on For?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-eb6229664b2fe5ae7063\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-eb6229664b2fe5ae7063\" aria-expanded=\"false\" aria-controls=\"Collapse-eb6229664b2fe5ae7063\">\n                            What Payment Methods Are Available? \n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-6c3aab064b2fe5af14a7\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-6c3aab064b2fe5af14a7\" aria-expanded=\"true\" aria-controls=\"Collapse-6c3aab064b2fe5af14a7\">\n                             How to Make an Appointment for Group Service?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-320303564b2fe5af14a7\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-320303564b2fe5af14a7\" aria-expanded=\"false\" aria-controls=\"Collapse-320303564b2fe5af14a7\">\n                            How Long Will My Treatment Go on For?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-eb6229664b2fe5af14a7\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-eb6229664b2fe5af14a7\" aria-expanded=\"false\" aria-controls=\"Collapse-eb6229664b2fe5af14a7\">\n                            What Payment Methods Are Available? \n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','FAQ','','publish','closed','closed','','faq','','','2023-07-16 01:45:23','2023-07-15 20:15:23','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=faq',0,'elementor_library','',0),(97,1,'2023-07-16 01:45:23','2023-07-15 20:15:23','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Appointment</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Appointment\n									</li>\n						</ul>\n                <h3>Quality Services</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n                <h3>Professional Team</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n                <h3>Dedicated Support</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h5>Make Appointment</h5>		\n			<h2>Don’t Hesitate To Contact Us  For Better Information And Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h5>Our Price</h5>		\n			<h2>Choose Your Plan</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<h3>Personal Plan</h3>		\n			$35		\n		Per Hour		\n					<ul>\n							<li>\n										Private Conseling\n									</li>\n								<li>\n										Evaluation of Psychological\n									</li>\n								<li>\n										Specific Advice Situation\n									</li>\n								<li>\n										Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<a href=\"#\">\n						Get Started\n					</a>\n			<h3>Family Plan</h3>		\n			$65		\n		Per Hour		\n					<ul>\n							<li>\n										Private Conseling\n									</li>\n								<li>\n										Evaluation of Psychological\n									</li>\n								<li>\n										Specific Advice Situation\n									</li>\n								<li>\n										Customer Support\n									</li>\n						</ul>\n			<a href=\"#\">\n						Get Started\n					</a>\n			<h3>Group Plan</h3>		\n			$85		\n		Per Hour		\n					<ul>\n							<li>\n										Private Conseling\n									</li>\n								<li>\n										Evaluation of Psychological\n									</li>\n								<li>\n										Specific Advice Situation\n									</li>\n								<li>\n										Customer Support\n									</li>\n						</ul>\n			<a href=\"#\">\n						Get Started\n					</a>','Appointment','','publish','closed','closed','','appointment','','','2023-07-16 01:45:24','2023-07-15 20:15:24','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=appointment',0,'elementor_library','',0),(98,1,'2023-07-16 01:45:23','2023-07-15 20:15:23','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Our Blog</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Blog\n									</li>\n						</ul>\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>\n			<h3>Recent Post</h3>		\n					<ul>\n						<li>\n				<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\" >\n								10 Jul 2023							\n						Hello world!\n				</a>\n			</li>\n				</ul>\n			<h3>24 Hours Emergency Call</h3>		\n		Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incididunt ut labore		\n			<a href=\"#\">\n						(+021) 2336 278\n					</a>\n			<h3>Categories</h3>		\n					<ul>\n					</ul>','Blog','','publish','closed','closed','','blog','','','2023-07-16 01:45:24','2023-07-15 20:15:24','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=blog',0,'elementor_library','',0),(99,1,'2023-07-16 01:45:23','2023-07-15 20:15:23','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>FAQ</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										FAQ\n									</li>\n						</ul>\n			<h5>FAQ</h5>		\n			<h2>Popular Question</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n                        <a href=\"#collapse-6c3aab064b2fe5ae7063\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-6c3aab064b2fe5ae7063\" aria-expanded=\"true\" aria-controls=\"Collapse-6c3aab064b2fe5ae7063\">\n                             How to Make an Appointment for Group Service?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-320303564b2fe5ae7063\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-320303564b2fe5ae7063\" aria-expanded=\"false\" aria-controls=\"Collapse-320303564b2fe5ae7063\">\n                            How Long Will My Treatment Go on For?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-eb6229664b2fe5ae7063\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-eb6229664b2fe5ae7063\" aria-expanded=\"false\" aria-controls=\"Collapse-eb6229664b2fe5ae7063\">\n                            What Payment Methods Are Available? \n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-6c3aab064b2fe5af14a7\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-6c3aab064b2fe5af14a7\" aria-expanded=\"true\" aria-controls=\"Collapse-6c3aab064b2fe5af14a7\">\n                             How to Make an Appointment for Group Service?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-320303564b2fe5af14a7\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-320303564b2fe5af14a7\" aria-expanded=\"false\" aria-controls=\"Collapse-320303564b2fe5af14a7\">\n                            How Long Will My Treatment Go on For?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-eb6229664b2fe5af14a7\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-eb6229664b2fe5af14a7\" aria-expanded=\"false\" aria-controls=\"Collapse-eb6229664b2fe5af14a7\">\n                            What Payment Methods Are Available? \n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','FAQ','','inherit','closed','closed','','96-revision-v1','','','2023-07-16 01:45:23','2023-07-15 20:15:23','',96,'https://healthcaremarketing.in8.cdn-alpha.com/?p=99',0,'revision','',0),(100,1,'2023-07-16 01:45:23','2023-07-15 20:15:23','','happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up.jpg','','inherit','open','closed','','happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up-jpg','','','2023-07-16 01:45:23','2023-07-15 20:15:23','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up.jpg',0,'attachment','image/jpeg',0),(101,1,'2023-07-16 01:45:24','2023-07-15 20:15:24','','placeholder.png','','inherit','open','closed','','placeholder-png','','','2023-07-16 01:45:24','2023-07-15 20:15:24','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/placeholder.png',0,'attachment','image/png',0),(102,1,'2023-07-16 01:45:25','2023-07-15 20:15:25','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Contact Us</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Contact\n									</li>\n						</ul>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h5>Contact Us</h5>		\n			<h2>Let\'s Ge In Touch</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation 		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h4>\n                    Kuta, Badung                </h4>\n                        		  <p>Jl. Raya Kuta No.70, Kuta - Bali </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h4>\n                    Renon, Denpasar                </h4>\n                        		  <p>Jl. Raya Puputan No.9, Renon</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h4>\n                    Calling Support                </h4>\n                        		  <p>(+021) 2336 278\n</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h4>\n                    Email Information                </h4>\n                        		  <p>support@domain.com</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h4>Working Hours</h4>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Jalan%20Raya%20Kuta%2C%20Bali&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Jalan Raya Kuta, Bali\"\n					aria-label=\"Jalan Raya Kuta, Bali\"\n			></iframe>','Contact','','publish','closed','closed','','contact','','','2023-07-16 01:45:25','2023-07-15 20:15:25','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=contact',0,'elementor_library','',0),(103,1,'2023-07-16 01:45:24','2023-07-15 20:15:24','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Our Blog</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Blog\n									</li>\n						</ul>\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>\n			<h3>Recent Post</h3>		\n					<ul>\n						<li>\n				<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\" >\n								10 Jul 2023							\n						Hello world!\n				</a>\n			</li>\n				</ul>\n			<h3>24 Hours Emergency Call</h3>		\n		Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incididunt ut labore		\n			<a href=\"#\">\n						(+021) 2336 278\n					</a>\n			<h3>Categories</h3>		\n					<ul>\n					</ul>','Blog','','inherit','closed','closed','','98-revision-v1','','','2023-07-16 01:45:24','2023-07-15 20:15:24','',98,'https://healthcaremarketing.in8.cdn-alpha.com/?p=103',0,'revision','',0),(104,1,'2023-07-16 01:45:24','2023-07-15 20:15:24','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Appointment</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Appointment\n									</li>\n						</ul>\n                <h3>Quality Services</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n                <h3>Professional Team</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n                <h3>Dedicated Support</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h5>Make Appointment</h5>		\n			<h2>Don’t Hesitate To Contact Us  For Better Information And Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h5>Our Price</h5>		\n			<h2>Choose Your Plan</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<h3>Personal Plan</h3>		\n			$35		\n		Per Hour		\n					<ul>\n							<li>\n										Private Conseling\n									</li>\n								<li>\n										Evaluation of Psychological\n									</li>\n								<li>\n										Specific Advice Situation\n									</li>\n								<li>\n										Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<a href=\"#\">\n						Get Started\n					</a>\n			<h3>Family Plan</h3>		\n			$65		\n		Per Hour		\n					<ul>\n							<li>\n										Private Conseling\n									</li>\n								<li>\n										Evaluation of Psychological\n									</li>\n								<li>\n										Specific Advice Situation\n									</li>\n								<li>\n										Customer Support\n									</li>\n						</ul>\n			<a href=\"#\">\n						Get Started\n					</a>\n			<h3>Group Plan</h3>		\n			$85		\n		Per Hour		\n					<ul>\n							<li>\n										Private Conseling\n									</li>\n								<li>\n										Evaluation of Psychological\n									</li>\n								<li>\n										Specific Advice Situation\n									</li>\n								<li>\n										Customer Support\n									</li>\n						</ul>\n			<a href=\"#\">\n						Get Started\n					</a>','Appointment','','inherit','closed','closed','','97-revision-v1','','','2023-07-16 01:45:24','2023-07-15 20:15:24','',97,'https://healthcaremarketing.in8.cdn-alpha.com/?p=104',0,'revision','',0),(105,1,'2023-07-16 01:45:25','2023-07-15 20:15:25','','depression-2UJ6UY8.png','','inherit','open','closed','','depression-2uj6uy8-png','','','2023-07-16 01:45:25','2023-07-15 20:15:25','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png',0,'attachment','image/png',0),(106,1,'2023-07-16 01:45:25','2023-07-15 20:15:25','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Contact Us</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Contact\n									</li>\n						</ul>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h5>Contact Us</h5>		\n			<h2>Let\'s Ge In Touch</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation 		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h4>\n                    Kuta, Badung                </h4>\n                        		  <p>Jl. Raya Kuta No.70, Kuta - Bali </p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h4>\n                    Renon, Denpasar                </h4>\n                        		  <p>Jl. Raya Puputan No.9, Renon</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h4>\n                    Calling Support                </h4>\n                        		  <p>(+021) 2336 278\n</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h4>\n                    Email Information                </h4>\n                        		  <p>support@domain.com</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h4>Working Hours</h4>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-google_maps .elementor-widget-container{overflow:hidden}.elementor-widget-google_maps .elementor-custom-embed{line-height:0}.elementor-widget-google_maps iframe{height:300px}</style>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Jalan%20Raya%20Kuta%2C%20Bali&#038;t=m&#038;z=18&#038;output=embed&#038;iwloc=near\"\n					title=\"Jalan Raya Kuta, Bali\"\n					aria-label=\"Jalan Raya Kuta, Bali\"\n			></iframe>','Contact','','inherit','closed','closed','','102-revision-v1','','','2023-07-16 01:45:25','2023-07-15 20:15:25','',102,'https://healthcaremarketing.in8.cdn-alpha.com/?p=106',0,'revision','',0),(107,1,'2023-07-16 01:45:26','2023-07-15 20:15:26','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>404		\n			<h2>Page Not Found</h2>		\n		The page you are looking for might have been removed had its name changed or is temporarily unavailable\n			<a href=\"#\">\n						Back To Home\n					</a>','404 Page','','publish','closed','closed','','404-page','','','2023-07-16 01:45:27','2023-07-15 20:15:27','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=404-page',0,'elementor_library','',0),(108,1,'2023-07-16 01:45:27','2023-07-15 20:15:27','','UUFGSJH.jpg','','inherit','open','closed','','uufgsjh-jpg','','','2023-07-16 01:45:27','2023-07-15 20:15:27','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/UUFGSJH.jpg',0,'attachment','image/jpeg',0),(109,1,'2023-07-16 01:45:27','2023-07-15 20:15:27','','couple-talking-to-family-counselor.jpg','','inherit','open','closed','','couple-talking-to-family-counselor-jpg','','','2023-07-16 01:45:27','2023-07-15 20:15:27','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-talking-to-family-counselor.jpg',0,'attachment','image/jpeg',0),(110,1,'2023-07-16 01:45:27','2023-07-15 20:15:27','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"723\" height=\"179\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/logo-QQBEZ9C.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/logo-QQBEZ9C.png 723w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/logo-QQBEZ9C-300x74.png 300w\" sizes=\"(max-width: 723px) 100vw, 723px\" />															\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod 		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Jl. Raya Kuta No.70, Kuta\n									</li>\n								<li>\n										support@domain.com\n									</li>\n								<li>\n										(+021) 2336 278\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Other Pages</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Cases\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Contact\n											</a>\n									</li>\n						</ul>\n			<h4>Quick Links</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Term Of Service\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Disclaimer\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Credits\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										FAQ\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<form method=\"post\" data-listed=\"\" data-success-message=\"Successfully listed this email\" data-success-opt-in-message=\"\">\n			<input type=\"hidden\" name=\"double_opt_in\" value=\"no\">\n																<input type=\"email\" aria-label=\"email\" name=\"email\" placeholder=\"Your Email Address\" required />\n						<button type=\"submit\" aria-label=\"submit\" name=\"ekit_mail_chimp\">Subscribe</button>\n			</form>\n		Get the latest news & updates\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Psychology & Counseling Template Kit by BalinizCopyright © 2021 All rights reserved.','Footer','','publish','closed','closed','','footer','','','2023-07-16 01:45:28','2023-07-15 20:15:28','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=footer',0,'elementor_library','',0),(111,1,'2023-07-16 01:45:27','2023-07-15 20:15:27','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>404		\n			<h2>Page Not Found</h2>		\n		The page you are looking for might have been removed had its name changed or is temporarily unavailable\n			<a href=\"#\">\n						Back To Home\n					</a>','404 Page','','inherit','closed','closed','','107-revision-v1','','','2023-07-16 01:45:27','2023-07-15 20:15:27','',107,'https://healthcaremarketing.in8.cdn-alpha.com/?p=111',0,'revision','',0),(112,1,'2023-07-16 01:45:28','2023-07-15 20:15:28','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>A Comprehensive Directory For Your Mental Health</h2>		\n		Consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.Tag Post : 		\n		Share This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Recent Post</h3>		\n					<ul>\n						<li>\n				<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\" >\n								10 Jul 2023							\n						Hello world!\n				</a>\n			</li>\n				</ul>\n			<h3>24 Hours Emergency Call</h3>		\n		Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incididunt ut labore		\n			<a href=\"#\">\n						(+021) 2336 278\n					</a>\n			<h3>Categories</h3>		\n					<ul>\n					</ul>','Single Blog','','publish','closed','closed','','single-blog','','','2023-07-16 01:45:29','2023-07-15 20:15:29','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=single-blog',0,'elementor_library','',0),(113,1,'2023-07-16 01:45:28','2023-07-15 20:15:28','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"723\" height=\"179\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/logo-QQBEZ9C.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/logo-QQBEZ9C.png 723w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/logo-QQBEZ9C-300x74.png 300w\" sizes=\"(max-width: 723px) 100vw, 723px\" />															\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod 		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Jl. Raya Kuta No.70, Kuta\n									</li>\n								<li>\n										support@domain.com\n									</li>\n								<li>\n										(+021) 2336 278\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Other Pages</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Cases\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Contact\n											</a>\n									</li>\n						</ul>\n			<h4>Quick Links</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Term Of Service\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Disclaimer\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Credits\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										FAQ\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<form method=\"post\" data-listed=\"\" data-success-message=\"Successfully listed this email\" data-success-opt-in-message=\"\">\n			<input type=\"hidden\" name=\"double_opt_in\" value=\"no\">\n																<input type=\"email\" aria-label=\"email\" name=\"email\" placeholder=\"Your Email Address\" required />\n						<button type=\"submit\" aria-label=\"submit\" name=\"ekit_mail_chimp\">Subscribe</button>\n			</form>\n		Get the latest news & updates\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Psychology & Counseling Template Kit by BalinizCopyright © 2021 All rights reserved.','Footer','','inherit','closed','closed','','110-revision-v1','','','2023-07-16 01:45:28','2023-07-15 20:15:28','',110,'https://healthcaremarketing.in8.cdn-alpha.com/?p=113',0,'revision','',0),(114,1,'2023-07-16 01:45:29','2023-07-15 20:15:29','','smiling-man-at-group-therapy-session-7HU8Q2C.jpg','','inherit','open','closed','','smiling-man-at-group-therapy-session-7hu8q2c-jpg','','','2023-07-16 01:45:29','2023-07-15 20:15:29','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/smiling-man-at-group-therapy-session-7HU8Q2C.jpg',0,'attachment','image/jpeg',0),(115,1,'2023-07-16 01:45:29','2023-07-15 20:15:29','Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>A Comprehensive Directory For Your Mental Health</h2>		\n		Consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborumLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.Tag Post : 		\n		Share This : 		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<h3>Recent Post</h3>		\n					<ul>\n						<li>\n				<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\" >\n								10 Jul 2023							\n						Hello world!\n				</a>\n			</li>\n				</ul>\n			<h3>24 Hours Emergency Call</h3>		\n		Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incididunt ut labore		\n			<a href=\"#\">\n						(+021) 2336 278\n					</a>\n			<h3>Categories</h3>		\n					<ul>\n					</ul>','Single Blog','','inherit','closed','closed','','112-revision-v1','','','2023-07-16 01:45:29','2023-07-15 20:15:29','',112,'https://healthcaremarketing.in8.cdn-alpha.com/?p=115',0,'revision','',0),(116,1,'2023-07-16 01:45:30','2023-07-15 20:15:30','','CASCKD8.jpg','','inherit','open','closed','','casckd8-jpg','','','2023-07-16 01:45:30','2023-07-15 20:15:30','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/CASCKD8.jpg',0,'attachment','image/jpeg',0),(117,1,'2023-07-16 01:45:30','2023-07-15 20:15:30','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"723\" height=\"179\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/logo-QQBEZ9C.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/logo-QQBEZ9C.png 723w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/logo-QQBEZ9C-300x74.png 300w\" sizes=\"(max-width: 723px) 100vw, 723px\" />															\n			<button></button>\n        <ul>\n<li><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/sample-page/\">Sample Page</a></li>\n</ul>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com\"><img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/logo-QQBEZ9C.png\" ></a>\n                <button></button>\n			<a href=\"#\">\n						Make Appointment\n					</a>','Header','','publish','closed','closed','','header','','','2023-07-16 01:45:31','2023-07-15 20:15:31','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=header',0,'elementor_library','',0),(118,1,'2023-07-16 01:45:31','2023-07-15 20:15:31','','family-XNUKDAT.png','','inherit','open','closed','','family-xnukdat-png','','','2023-07-16 01:45:31','2023-07-15 20:15:31','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png',0,'attachment','image/png',0),(119,1,'2023-07-16 01:45:31','2023-07-15 20:15:31','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"723\" height=\"179\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/logo-QQBEZ9C.png\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/logo-QQBEZ9C.png 723w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/logo-QQBEZ9C-300x74.png 300w\" sizes=\"(max-width: 723px) 100vw, 723px\" />															\n			<button></button>\n        <ul>\n<li><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/sample-page/\">Sample Page</a></li>\n</ul>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com\"><img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/logo-QQBEZ9C.png\" ></a>\n                <button></button>\n			<a href=\"#\">\n						Make Appointment\n					</a>','Header','','inherit','closed','closed','','117-revision-v1','','','2023-07-16 01:45:31','2023-07-15 20:15:31','',117,'https://healthcaremarketing.in8.cdn-alpha.com/?p=119',0,'revision','',0),(120,1,'2023-07-16 01:45:34','2023-07-15 20:15:34','','anxiety-TYH9SPN.png','','inherit','open','closed','','anxiety-tyh9spn-png','','','2023-07-16 01:45:34','2023-07-15 20:15:34','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png',0,'attachment','image/png',0),(121,1,'2023-07-16 01:45:35','2023-07-15 20:15:35','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>About Us</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										About Us\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--q9grra0jgaorjgb1af0o4stqtimw5bfd8j0rgpgf00.jpg\" title=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" alt=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" loading=\"lazy\" />															\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						We Are Trusted More Than 2580 Patients					\n				</h3>\n			<h5>About Mindary</h5>		\n			<h2>A Comprehensive Directory For Your Mental Health</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laborisWe provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuriesLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud 		\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										To assist the individual in recovering from the crisis & problems\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Our Psychologist</h5>		\n			<h2>Meet With Our Psychologist</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/female-psychologist-in-office-FHV8Q5Z-q9grrlalqb4sotvwro4cmwuhjqogu7iz6i5xqaz9j4.jpg\" title=\"female-psychologist-in-office-FHV8Q5Z.jpg\" alt=\"female-psychologist-in-office-FHV8Q5Z.jpg\" loading=\"lazy\" />															\n			<h3>Psychologist</h3><h2>Merryn Schofield</h2>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/psychologist-in-office-WAUZF95-q9grrstb8zf39pkzjrdd6uy6atnejsctvjdtkio45c.jpg\" title=\"psychologist-in-office-WAUZF95.jpg\" alt=\"psychologist-in-office-WAUZF95.jpg\" loading=\"lazy\" />															\n			<h3>Psychologist</h3><h2>Thierry Brady</h2>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/smiling-man-at-group-therapy-session-7HU8Q2C-q9grs0c0rnpdula2bumdqt1v1wmc9d6okklpeqcyrk.jpg\" title=\"smiling-man-at-group-therapy-session-7HU8Q2C.jpg\" alt=\"smiling-man-at-group-therapy-session-7HU8Q2C.jpg\" loading=\"lazy\" />															\n			<h3>Psychologist</h3><h2>Wilson Gilbert</h2>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','About Us','','publish','closed','closed','','about-us','','','2023-07-16 01:45:37','2023-07-15 20:15:37','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=about-us',0,'elementor_library','',0),(122,1,'2023-07-16 01:45:35','2023-07-15 20:15:35','','blonde-counselor-RZ2YJEB.jpg','','inherit','open','closed','','blonde-counselor-rz2yjeb-jpg','','','2023-07-16 01:45:35','2023-07-15 20:15:35','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-counselor-RZ2YJEB.jpg',0,'attachment','image/jpeg',0),(123,1,'2023-07-16 01:45:35','2023-07-15 20:15:35','','anxiety-TYH9SPN.png','','inherit','open','closed','','anxiety-tyh9spn-png-2','','','2023-07-16 01:45:35','2023-07-15 20:15:35','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN-1.png',0,'attachment','image/png',0),(124,1,'2023-07-16 01:45:36','2023-07-15 20:15:36','','psychotherapist-talking-with-patients-of-support-group.jpg','','inherit','open','closed','','psychotherapist-talking-with-patients-of-support-group-jpg','','','2023-07-16 01:45:36','2023-07-15 20:15:36','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/psychotherapist-talking-with-patients-of-support-group.jpg',0,'attachment','image/jpeg',0),(125,1,'2023-07-16 01:45:36','2023-07-15 20:15:36','','couple-RUUMCJ.png','','inherit','open','closed','','couple-ruumcj-png','','','2023-07-16 01:45:36','2023-07-15 20:15:36','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png',0,'attachment','image/png',0),(126,1,'2023-07-16 01:45:36','2023-07-15 20:15:36','','mental-health-and-psychological-help-concept-young-woman-with-depression-on-counseling-session-with.jpg','','inherit','open','closed','','mental-health-and-psychological-help-concept-young-woman-with-depression-on-counseling-session-with-jpg','','','2023-07-16 01:45:36','2023-07-15 20:15:36','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/mental-health-and-psychological-help-concept-young-woman-with-depression-on-counseling-session-with.jpg',0,'attachment','image/jpeg',0),(127,1,'2023-07-16 01:45:37','2023-07-15 20:15:37','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Case Details</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Case Details\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"1920\" height=\"1280\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg 1920w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU-1024x683.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU-1536x1024.jpg 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />															\n			<h3>Couple Problem Solving</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris 		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Date                </h3>\n                        		  <p>June 18, 2021</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Client                </h3>\n                        		  <p>Bill &amp; Melin</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Category                </h3>\n                        		  <p>Couple Problem</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Mentor                </h3>\n                        		  <p>Jordi Medrano\n</p>\n		Share It		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"whatsapp\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<h3>Summary Of The Case Studies\n</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. sed do eiusmod tempor incididunt ut labore 		\n																<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-talking-at-therapy-session-with-male-therapist.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"couple-talking-at-therapy-session-with-male-therapist.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Ijg1IiwidXJsIjoiaHR0cHM6XC9cL2hlYWx0aGNhcmVtYXJrZXRpbmcuaW44LmNkbi1hbHBoYS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzA3XC9jb3VwbGUtdGFsa2luZy1hdC10aGVyYXB5LXNlc3Npb24td2l0aC1tYWxlLXRoZXJhcGlzdC5qcGcifQ%3D%3D\">\n							<img width=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-talking-at-therapy-session-with-male-therapist.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-talking-at-therapy-session-with-male-therapist.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-talking-at-therapy-session-with-male-therapist-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-talking-at-therapy-session-with-male-therapist-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-talking-at-therapy-session-with-male-therapist-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-talking-at-therapy-session-with-male-therapist-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h3>Symptoms Encountered\n</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat		\n					<ul>\n							<li>\n										Quisque aliquet nibh sit amet lectus auctor\n									</li>\n								<li>\n										Nulla at metus ultricies, placerat augue\n									</li>\n								<li>\n										 Duis aute irure dolor in reprehenderit in voluptate\n									</li>\n						</ul>\n																<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6IjEwMCIsInVybCI6Imh0dHBzOlwvXC9oZWFsdGhjYXJlbWFya2V0aW5nLmluOC5jZG4tYWxwaGEuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wN1wvaGFwcHktY291cGxlLXJlY29uY2lsaW5nLWF0LXRoZXJhcHktc2Vzc2lvbi10aGVyYXBpc3RzLXNob3dpbmctdGh1bWJzLXVwLmpwZyJ9\">\n							<img width=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p>		\n			<h3>Our Soltuions</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p>		\n			<h5>Latest Cases</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h2>Couple Problem Solving</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h2>Depression Problem</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h2>Individual Coaching</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>','Case Details','','publish','closed','closed','','case-details','','','2023-07-16 01:45:38','2023-07-15 20:15:38','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=case-details',0,'elementor_library','',0),(128,1,'2023-07-16 01:45:37','2023-07-15 20:15:37','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>About Us</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										About Us\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--q9grra0jgaorjgb1af0o4stqtimw5bfd8j0rgpgf00.jpg\" title=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" alt=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" loading=\"lazy\" />															\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						We Are Trusted More Than 2580 Patients					\n				</h3>\n			<h5>About Mindary</h5>		\n			<h2>A Comprehensive Directory For Your Mental Health</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laborisWe provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuriesLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud 		\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										To assist the individual in recovering from the crisis & problems\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Our Psychologist</h5>		\n			<h2>Meet With Our Psychologist</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/female-psychologist-in-office-FHV8Q5Z-q9grrlalqb4sotvwro4cmwuhjqogu7iz6i5xqaz9j4.jpg\" title=\"female-psychologist-in-office-FHV8Q5Z.jpg\" alt=\"female-psychologist-in-office-FHV8Q5Z.jpg\" loading=\"lazy\" />															\n			<h3>Psychologist</h3><h2>Merryn Schofield</h2>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/psychologist-in-office-WAUZF95-q9grrstb8zf39pkzjrdd6uy6atnejsctvjdtkio45c.jpg\" title=\"psychologist-in-office-WAUZF95.jpg\" alt=\"psychologist-in-office-WAUZF95.jpg\" loading=\"lazy\" />															\n			<h3>Psychologist</h3><h2>Thierry Brady</h2>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/smiling-man-at-group-therapy-session-7HU8Q2C-q9grs0c0rnpdula2bumdqt1v1wmc9d6okklpeqcyrk.jpg\" title=\"smiling-man-at-group-therapy-session-7HU8Q2C.jpg\" alt=\"smiling-man-at-group-therapy-session-7HU8Q2C.jpg\" loading=\"lazy\" />															\n			<h3>Psychologist</h3><h2>Wilson Gilbert</h2>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','About Us','','inherit','closed','closed','','121-revision-v1','','','2023-07-16 01:45:37','2023-07-15 20:15:37','',121,'https://healthcaremarketing.in8.cdn-alpha.com/?p=128',0,'revision','',0),(129,1,'2023-07-16 01:45:37','2023-07-15 20:15:37','','portrait-of-professional-male-therapist-in-suit-sh-LEUGTME.jpg','','inherit','open','closed','','portrait-of-professional-male-therapist-in-suit-sh-leugtme-jpg','','','2023-07-16 01:45:37','2023-07-15 20:15:37','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/portrait-of-professional-male-therapist-in-suit-sh-LEUGTME.jpg',0,'attachment','image/jpeg',0),(130,1,'2023-07-16 01:45:38','2023-07-15 20:15:38','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Case Details</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Case Details\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"1920\" height=\"1280\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg 1920w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU-1024x683.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU-1536x1024.jpg 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />															\n			<h3>Couple Problem Solving</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris 		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Date                </h3>\n                        		  <p>June 18, 2021</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Client                </h3>\n                        		  <p>Bill &amp; Melin</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Category                </h3>\n                        		  <p>Couple Problem</p>\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    Mentor                </h3>\n                        		  <p>Jordi Medrano\n</p>\n		Share It		\n					<ul>\n                            <li data-social=\"facebook\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"twitter\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"linkedin\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                            <li data-social=\"whatsapp\">\n                    <a>\n                                                                                            </a>\n                </li>\n                                    </ul>\n			<h3>Summary Of The Case Studies\n</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. sed do eiusmod tempor incididunt ut labore 		\n																<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-talking-at-therapy-session-with-male-therapist.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"couple-talking-at-therapy-session-with-male-therapist.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6Ijg1IiwidXJsIjoiaHR0cHM6XC9cL2hlYWx0aGNhcmVtYXJrZXRpbmcuaW44LmNkbi1hbHBoYS5jb21cL3dwLWNvbnRlbnRcL3VwbG9hZHNcLzIwMjNcLzA3XC9jb3VwbGUtdGFsa2luZy1hdC10aGVyYXB5LXNlc3Npb24td2l0aC1tYWxlLXRoZXJhcGlzdC5qcGcifQ%3D%3D\">\n							<img width=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-talking-at-therapy-session-with-male-therapist.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-talking-at-therapy-session-with-male-therapist.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-talking-at-therapy-session-with-male-therapist-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-talking-at-therapy-session-with-male-therapist-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-talking-at-therapy-session-with-male-therapist-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-talking-at-therapy-session-with-male-therapist-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n			<h3>Symptoms Encountered\n</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat		\n					<ul>\n							<li>\n										Quisque aliquet nibh sit amet lectus auctor\n									</li>\n								<li>\n										Nulla at metus ultricies, placerat augue\n									</li>\n								<li>\n										 Duis aute irure dolor in reprehenderit in voluptate\n									</li>\n						</ul>\n																<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up.jpg\" data-elementor-open-lightbox=\"yes\" data-elementor-lightbox-title=\"happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up.jpg\" data-e-action-hash=\"#elementor-action%3Aaction%3Dlightbox%26settings%3DeyJpZCI6IjEwMCIsInVybCI6Imh0dHBzOlwvXC9oZWFsdGhjYXJlbWFya2V0aW5nLmluOC5jZG4tYWxwaGEuY29tXC93cC1jb250ZW50XC91cGxvYWRzXC8yMDIzXC8wN1wvaGFwcHktY291cGxlLXJlY29uY2lsaW5nLWF0LXRoZXJhcHktc2Vzc2lvbi10aGVyYXBpc3RzLXNob3dpbmctdGh1bWJzLXVwLmpwZyJ9\">\n							<img width=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/happy-couple-reconciling-at-therapy-session-therapists-showing-thumbs-up-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />								</a>\n		<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p>		\n			<h3>Our Soltuions</h3>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. </p>		\n			<h5>Latest Cases</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h2>Couple Problem Solving</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h2>Depression Problem</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h2>Individual Coaching</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>','Case Details','','inherit','closed','closed','','127-revision-v1','','','2023-07-16 01:45:38','2023-07-15 20:15:38','',127,'https://healthcaremarketing.in8.cdn-alpha.com/?p=130',0,'revision','',0),(131,1,'2023-07-16 01:45:40','2023-07-15 20:15:40','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Pricing</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Pricing\n									</li>\n						</ul>\n			<h5>Our Price</h5>		\n			<h2>Choose Your Plan</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<h3>Personal Plan</h3>		\n			$35		\n		Per Hour		\n					<ul>\n							<li>\n										Private Conseling\n									</li>\n								<li>\n										Evaluation of Psychological\n									</li>\n								<li>\n										Specific Advice Situation\n									</li>\n								<li>\n										Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<a href=\"#\">\n						Get Started\n					</a>\n			<h3>Family Plan</h3>		\n			$65		\n		Per Hour		\n					<ul>\n							<li>\n										Private Conseling\n									</li>\n								<li>\n										Evaluation of Psychological\n									</li>\n								<li>\n										Specific Advice Situation\n									</li>\n								<li>\n										Customer Support\n									</li>\n						</ul>\n			<a href=\"#\">\n						Get Started\n					</a>\n			<h3>Group Plan</h3>		\n			$85		\n		Per Hour		\n					<ul>\n							<li>\n										Private Conseling\n									</li>\n								<li>\n										Evaluation of Psychological\n									</li>\n								<li>\n										Specific Advice Situation\n									</li>\n								<li>\n										Customer Support\n									</li>\n						</ul>\n			<a href=\"#\">\n						Get Started\n					</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    12 Years Of Experiences                </h3>\n                        		  <p>Lorem ipsum dolor sit amet, consect adipiscing elit, sed do eiusmod tempor incididunt ut labore </p>\n                                                            <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                                        Make Appointment\n                                    </a>\n			<h5>Testimonials</h5>		\n			<h2>What Patients Say About Us</h2>		\n										<img width=\"320\" height=\"320\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/MKLVKTE.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/MKLVKTE.jpg 320w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/MKLVKTE-300x300.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/MKLVKTE-150x150.jpg 150w\" sizes=\"(max-width: 320px) 100vw, 320px\" />									\n									<strong>Carlos Stein</strong>\n									Student\n																									<p>vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia</p>\n																							<!-- .commentor-content END -->\n										<img width=\"320\" height=\"320\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/UUFGSJH.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/UUFGSJH.jpg 320w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/UUFGSJH-300x300.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/UUFGSJH-150x150.jpg 150w\" sizes=\"(max-width: 320px) 100vw, 320px\" />									\n									<strong>Aneesa Andrews</strong>\n									Co-Founder HCM\n																									<p>vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia</p>\n																							<!-- .commentor-content END -->\n										<img width=\"320\" height=\"320\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/CASCKD8.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/CASCKD8.jpg 320w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/CASCKD8-300x300.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/CASCKD8-150x150.jpg 150w\" sizes=\"(max-width: 320px) 100vw, 320px\" />									\n									<strong>Carolyn Hood</strong>\n									Entrepreneur\n																									<p>vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia</p>\n																							<!-- .commentor-content END -->\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h2>Couple Problem Solving</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/mental-health-and-psychological-help-concept-young-woman-with-depression-on-counseling-session-with.jpg\"  alt=\"Depression Problem\">\n                <h2>Depression Problem</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h2>Individual Coaching</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>','Pricing','','publish','closed','closed','','pricing','','','2023-07-16 01:45:41','2023-07-15 20:15:41','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=pricing',0,'elementor_library','',0),(132,1,'2023-07-16 01:45:40','2023-07-15 20:15:40','','mental-problems.jpg','','inherit','open','closed','','mental-problems-jpg','','','2023-07-16 01:45:40','2023-07-15 20:15:40','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/mental-problems.jpg',0,'attachment','image/jpeg',0),(133,1,'2023-07-16 01:45:40','2023-07-15 20:15:40','','mental-problems.jpg','','inherit','open','closed','','mental-problems-jpg-2','','','2023-07-16 01:45:40','2023-07-15 20:15:40','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/mental-problems-1.jpg',0,'attachment','image/jpeg',0),(134,1,'2023-07-16 01:45:41','2023-07-15 20:15:41','','beautiful-psychologist-posing-for-photography-GD5VTJS.jpg','','inherit','open','closed','','beautiful-psychologist-posing-for-photography-gd5vtjs-jpg','','','2023-07-16 01:45:41','2023-07-15 20:15:41','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/beautiful-psychologist-posing-for-photography-GD5VTJS.jpg',0,'attachment','image/jpeg',0),(135,1,'2023-07-16 01:45:41','2023-07-15 20:15:41','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Pricing</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Pricing\n									</li>\n						</ul>\n			<h5>Our Price</h5>		\n			<h2>Choose Your Plan</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<h3>Personal Plan</h3>		\n			$35		\n		Per Hour		\n					<ul>\n							<li>\n										Private Conseling\n									</li>\n								<li>\n										Evaluation of Psychological\n									</li>\n								<li>\n										Specific Advice Situation\n									</li>\n								<li>\n										Customer Support\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n			<a href=\"#\">\n						Get Started\n					</a>\n			<h3>Family Plan</h3>		\n			$65		\n		Per Hour		\n					<ul>\n							<li>\n										Private Conseling\n									</li>\n								<li>\n										Evaluation of Psychological\n									</li>\n								<li>\n										Specific Advice Situation\n									</li>\n								<li>\n										Customer Support\n									</li>\n						</ul>\n			<a href=\"#\">\n						Get Started\n					</a>\n			<h3>Group Plan</h3>		\n			$85		\n		Per Hour		\n					<ul>\n							<li>\n										Private Conseling\n									</li>\n								<li>\n										Evaluation of Psychological\n									</li>\n								<li>\n										Specific Advice Situation\n									</li>\n								<li>\n										Customer Support\n									</li>\n						</ul>\n			<a href=\"#\">\n						Get Started\n					</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    12 Years Of Experiences                </h3>\n                        		  <p>Lorem ipsum dolor sit amet, consect adipiscing elit, sed do eiusmod tempor incididunt ut labore </p>\n                                                            <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                                        Make Appointment\n                                    </a>\n			<h5>Testimonials</h5>		\n			<h2>What Patients Say About Us</h2>		\n										<img width=\"320\" height=\"320\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/MKLVKTE.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/MKLVKTE.jpg 320w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/MKLVKTE-300x300.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/MKLVKTE-150x150.jpg 150w\" sizes=\"(max-width: 320px) 100vw, 320px\" />									\n									<strong>Carlos Stein</strong>\n									Student\n																									<p>vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia</p>\n																							<!-- .commentor-content END -->\n										<img width=\"320\" height=\"320\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/UUFGSJH.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/UUFGSJH.jpg 320w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/UUFGSJH-300x300.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/UUFGSJH-150x150.jpg 150w\" sizes=\"(max-width: 320px) 100vw, 320px\" />									\n									<strong>Aneesa Andrews</strong>\n									Co-Founder HCM\n																									<p>vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia</p>\n																							<!-- .commentor-content END -->\n										<img width=\"320\" height=\"320\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/CASCKD8.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/CASCKD8.jpg 320w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/CASCKD8-300x300.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/CASCKD8-150x150.jpg 150w\" sizes=\"(max-width: 320px) 100vw, 320px\" />									\n									<strong>Carolyn Hood</strong>\n									Entrepreneur\n																									<p>vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia</p>\n																							<!-- .commentor-content END -->\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h2>Couple Problem Solving</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/mental-health-and-psychological-help-concept-young-woman-with-depression-on-counseling-session-with.jpg\"  alt=\"Depression Problem\">\n                <h2>Depression Problem</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h2>Individual Coaching</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>','Pricing','','inherit','closed','closed','','131-revision-v1','','','2023-07-16 01:45:41','2023-07-15 20:15:41','',131,'https://healthcaremarketing.in8.cdn-alpha.com/?p=135',0,'revision','',0),(136,1,'2023-07-16 01:45:44','2023-07-15 20:15:44','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Psychologist</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Psychologist\n									</li>\n						</ul>\n			<h5>Our Psychologist</h5>		\n			<h2>Meet With Our Psychologist</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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 src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/female-psychologist-in-office-FHV8Q5Z-q9grrlalqb4sotvwro4cmwuhjqogu7iz6i5xqaz9j4.jpg\" title=\"female-psychologist-in-office-FHV8Q5Z.jpg\" alt=\"female-psychologist-in-office-FHV8Q5Z.jpg\" loading=\"lazy\" />															\n			<h3>Psychologist</h3><h2>Merryn Schofield</h2>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/psychologist-in-office-WAUZF95-q9grrstb8zf39pkzjrdd6uy6atnejsctvjdtkio45c.jpg\" title=\"psychologist-in-office-WAUZF95.jpg\" alt=\"psychologist-in-office-WAUZF95.jpg\" loading=\"lazy\" />															\n			<h3>Psychologist</h3><h2>Thierry Brady</h2>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/smiling-man-at-group-therapy-session-7HU8Q2C-q9grs0c0rnpdula2bumdqt1v1wmc9d6okklpeqcyrk.jpg\" title=\"smiling-man-at-group-therapy-session-7HU8Q2C.jpg\" alt=\"smiling-man-at-group-therapy-session-7HU8Q2C.jpg\" loading=\"lazy\" />															\n			<h3>Psychologist</h3><h2>Wilson Gilbert</h2>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/blonde-counselor-RZ2YJEB-q9grs5z1wnx3s91vex255rmmm7ujjjt2lcimae4lq8.jpg\" title=\"blonde-counselor-RZ2YJEB.jpg\" alt=\"blonde-counselor-RZ2YJEB.jpg\" loading=\"lazy\" />															\n			<h3>Psychologist</h3><h2>Helena Barclay</h2>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/portrait-of-professional-male-therapist-in-suit-sh-LEUGTME-q9grs7uqabzofgz53xvear5jszl9yy0j9ltl8y1tds.jpg\" title=\"portrait-of-professional-male-therapist-in-suit-sh-LEUGTME.jpg\" alt=\"portrait-of-professional-male-therapist-in-suit-sh-LEUGTME.jpg\" loading=\"lazy\" />															\n			<h3>Psychologist</h3><h2>Jordi Medrano</h2>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/beautiful-psychologist-posing-for-photography-GD5VTJS-q9grsbm31o4tpwtohzhwkq7e6j2qtqfgm4fj61w8ow.jpg\" title=\"beautiful-psychologist-posing-for-photography-GD5VTJS.jpg\" alt=\"beautiful-psychologist-posing-for-photography-GD5VTJS.jpg\" loading=\"lazy\" />															\n			<h3>Psychologist</h3><h2>Katarina Acosta</h2>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						(+021) 2336 278					\n				</h3>','Pshychologist','','publish','closed','closed','','pshychologist','','','2023-07-16 01:45:45','2023-07-15 20:15:45','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=pshychologist',0,'elementor_library','',0),(137,1,'2023-07-16 01:45:45','2023-07-15 20:15:45','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Services</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Services\n									</li>\n						</ul>\n			<h2>We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum 		\n                <h3>Quality Services</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n                <h3>Professional Team</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n                <h3>Dedicated Support</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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 src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Make Appointment</h5>		\n			<h2>Don’t Hesitate To Contact Us  For Better Information And Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h5>FAQ</h5>		\n			<h2>Popular Question</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n                        <a href=\"#collapse-6c3aab064b2fe7286eb2\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-6c3aab064b2fe7286eb2\" aria-expanded=\"true\" aria-controls=\"Collapse-6c3aab064b2fe7286eb2\">\n                             How to Make an Appointment for Group Service?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-320303564b2fe7286eb2\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-320303564b2fe7286eb2\" aria-expanded=\"false\" aria-controls=\"Collapse-320303564b2fe7286eb2\">\n                            How Long Will My Treatment Go on For?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-eb6229664b2fe7286eb2\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-eb6229664b2fe7286eb2\" aria-expanded=\"false\" aria-controls=\"Collapse-eb6229664b2fe7286eb2\">\n                            What Payment Methods Are Available? \n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-6c3aab064b2fe728d31c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-6c3aab064b2fe728d31c\" aria-expanded=\"true\" aria-controls=\"Collapse-6c3aab064b2fe728d31c\">\n                             How to Make an Appointment for Group Service?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-320303564b2fe728d31c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-320303564b2fe728d31c\" aria-expanded=\"false\" aria-controls=\"Collapse-320303564b2fe728d31c\">\n                            How Long Will My Treatment Go on For?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-eb6229664b2fe728d31c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-eb6229664b2fe728d31c\" aria-expanded=\"false\" aria-controls=\"Collapse-eb6229664b2fe728d31c\">\n                            What Payment Methods Are Available? \n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->','Services','','publish','closed','closed','','services','','','2023-07-16 01:45:46','2023-07-15 20:15:46','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=services',0,'elementor_library','',0),(138,1,'2023-07-16 01:45:46','2023-07-15 20:15:46','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Our Cases</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Cases\n									</li>\n						</ul>\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h2>Couple Problem Solving</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h2>Depression Problem</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h2>Individual Coaching</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-talking-to-family-counselor.jpg\"  alt=\"Family Counseling\">\n                <h2>Family Counseling</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/man-in-stress.jpg\"  alt=\"Stress Management\">\n                <h2>Stress Management</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/psychotherapist-talking-with-patients-of-support-group.jpg\"  alt=\"Group Theraphy\">\n                <h2>Group Theraphy</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    12 Years Of Experiences                </h3>\n                        		  <p>Lorem ipsum dolor sit amet, consect adipiscing elit, sed do eiusmod tempor incididunt ut labore </p>\n                                                            <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                                        Make Appointment\n                                    </a>\n			<h5>Testimonials</h5>		\n			<h2>What Patients Say About Us</h2>		\n										<img width=\"320\" height=\"320\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/MKLVKTE.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/MKLVKTE.jpg 320w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/MKLVKTE-300x300.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/MKLVKTE-150x150.jpg 150w\" sizes=\"(max-width: 320px) 100vw, 320px\" />									\n									<strong>Carlos Stein</strong>\n									Student\n																									<p>vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia</p>\n																							<!-- .commentor-content END -->\n										<img width=\"320\" height=\"320\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/UUFGSJH.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/UUFGSJH.jpg 320w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/UUFGSJH-300x300.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/UUFGSJH-150x150.jpg 150w\" sizes=\"(max-width: 320px) 100vw, 320px\" />									\n									<strong>Aneesa Andrews</strong>\n									Co-Founder HCM\n																									<p>vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia</p>\n																							<!-- .commentor-content END -->\n										<img width=\"320\" height=\"320\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/CASCKD8.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/CASCKD8.jpg 320w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/CASCKD8-300x300.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/CASCKD8-150x150.jpg 150w\" sizes=\"(max-width: 320px) 100vw, 320px\" />									\n									<strong>Carolyn Hood</strong>\n									Entrepreneur\n																									<p>vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia</p>\n																							<!-- .commentor-content END -->\n			<h5>FAQ</h5>		\n			<h2>Popular Question</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n                        <a href=\"#collapse-6c3aab064b2fe72bd0e9\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-6c3aab064b2fe72bd0e9\" aria-expanded=\"true\" aria-controls=\"Collapse-6c3aab064b2fe72bd0e9\">\n                             How to Make an Appointment for Group Service?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-320303564b2fe72bd0e9\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-320303564b2fe72bd0e9\" aria-expanded=\"false\" aria-controls=\"Collapse-320303564b2fe72bd0e9\">\n                            How Long Will My Treatment Go on For?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-eb6229664b2fe72bd0e9\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-eb6229664b2fe72bd0e9\" aria-expanded=\"false\" aria-controls=\"Collapse-eb6229664b2fe72bd0e9\">\n                            What Payment Methods Are Available? \n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-6c3aab064b2fe72c0293\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-6c3aab064b2fe72c0293\" aria-expanded=\"true\" aria-controls=\"Collapse-6c3aab064b2fe72c0293\">\n                             How to Make an Appointment for Group Service?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-320303564b2fe72c0293\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-320303564b2fe72c0293\" aria-expanded=\"false\" aria-controls=\"Collapse-320303564b2fe72c0293\">\n                            How Long Will My Treatment Go on For?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-eb6229664b2fe72c0293\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-eb6229664b2fe72c0293\" aria-expanded=\"false\" aria-controls=\"Collapse-eb6229664b2fe72c0293\">\n                            What Payment Methods Are Available? \n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->','Cases','','publish','closed','closed','','cases','','','2023-07-16 01:45:46','2023-07-15 20:15:46','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=cases',0,'elementor_library','',0),(139,1,'2023-07-16 01:45:45','2023-07-15 20:15:45','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Psychologist</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Psychologist\n									</li>\n						</ul>\n			<h5>Our Psychologist</h5>		\n			<h2>Meet With Our Psychologist</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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 src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/female-psychologist-in-office-FHV8Q5Z-q9grrlalqb4sotvwro4cmwuhjqogu7iz6i5xqaz9j4.jpg\" title=\"female-psychologist-in-office-FHV8Q5Z.jpg\" alt=\"female-psychologist-in-office-FHV8Q5Z.jpg\" loading=\"lazy\" />															\n			<h3>Psychologist</h3><h2>Merryn Schofield</h2>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/psychologist-in-office-WAUZF95-q9grrstb8zf39pkzjrdd6uy6atnejsctvjdtkio45c.jpg\" title=\"psychologist-in-office-WAUZF95.jpg\" alt=\"psychologist-in-office-WAUZF95.jpg\" loading=\"lazy\" />															\n			<h3>Psychologist</h3><h2>Thierry Brady</h2>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/smiling-man-at-group-therapy-session-7HU8Q2C-q9grs0c0rnpdula2bumdqt1v1wmc9d6okklpeqcyrk.jpg\" title=\"smiling-man-at-group-therapy-session-7HU8Q2C.jpg\" alt=\"smiling-man-at-group-therapy-session-7HU8Q2C.jpg\" loading=\"lazy\" />															\n			<h3>Psychologist</h3><h2>Wilson Gilbert</h2>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/blonde-counselor-RZ2YJEB-q9grs5z1wnx3s91vex255rmmm7ujjjt2lcimae4lq8.jpg\" title=\"blonde-counselor-RZ2YJEB.jpg\" alt=\"blonde-counselor-RZ2YJEB.jpg\" loading=\"lazy\" />															\n			<h3>Psychologist</h3><h2>Helena Barclay</h2>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/portrait-of-professional-male-therapist-in-suit-sh-LEUGTME-q9grs7uqabzofgz53xvear5jszl9yy0j9ltl8y1tds.jpg\" title=\"portrait-of-professional-male-therapist-in-suit-sh-LEUGTME.jpg\" alt=\"portrait-of-professional-male-therapist-in-suit-sh-LEUGTME.jpg\" loading=\"lazy\" />															\n			<h3>Psychologist</h3><h2>Jordi Medrano</h2>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/beautiful-psychologist-posing-for-photography-GD5VTJS-q9grsbm31o4tpwtohzhwkq7e6j2qtqfgm4fj61w8ow.jpg\" title=\"beautiful-psychologist-posing-for-photography-GD5VTJS.jpg\" alt=\"beautiful-psychologist-posing-for-photography-GD5VTJS.jpg\" loading=\"lazy\" />															\n			<h3>Psychologist</h3><h2>Katarina Acosta</h2>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						(+021) 2336 278					\n				</h3>','Pshychologist','','inherit','closed','closed','','136-revision-v1','','','2023-07-16 01:45:45','2023-07-15 20:15:45','',136,'https://healthcaremarketing.in8.cdn-alpha.com/?p=139',0,'revision','',0),(140,1,'2023-07-16 01:45:46','2023-07-15 20:15:46','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Services</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Services\n									</li>\n						</ul>\n			<h2>We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum 		\n                <h3>Quality Services</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n                <h3>Professional Team</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n                <h3>Dedicated Support</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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 src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Make Appointment</h5>		\n			<h2>Don’t Hesitate To Contact Us  For Better Information And Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h5>FAQ</h5>		\n			<h2>Popular Question</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n                        <a href=\"#collapse-6c3aab064b2fe7286eb2\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-6c3aab064b2fe7286eb2\" aria-expanded=\"true\" aria-controls=\"Collapse-6c3aab064b2fe7286eb2\">\n                             How to Make an Appointment for Group Service?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-320303564b2fe7286eb2\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-320303564b2fe7286eb2\" aria-expanded=\"false\" aria-controls=\"Collapse-320303564b2fe7286eb2\">\n                            How Long Will My Treatment Go on For?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-eb6229664b2fe7286eb2\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-eb6229664b2fe7286eb2\" aria-expanded=\"false\" aria-controls=\"Collapse-eb6229664b2fe7286eb2\">\n                            What Payment Methods Are Available? \n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-6c3aab064b2fe728d31c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-6c3aab064b2fe728d31c\" aria-expanded=\"true\" aria-controls=\"Collapse-6c3aab064b2fe728d31c\">\n                             How to Make an Appointment for Group Service?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-320303564b2fe728d31c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-320303564b2fe728d31c\" aria-expanded=\"false\" aria-controls=\"Collapse-320303564b2fe728d31c\">\n                            How Long Will My Treatment Go on For?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-eb6229664b2fe728d31c\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-eb6229664b2fe728d31c\" aria-expanded=\"false\" aria-controls=\"Collapse-eb6229664b2fe728d31c\">\n                            What Payment Methods Are Available? \n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->','Services','','inherit','closed','closed','','137-revision-v1','','','2023-07-16 01:45:46','2023-07-15 20:15:46','',137,'https://healthcaremarketing.in8.cdn-alpha.com/?p=140',0,'revision','',0),(141,1,'2023-07-16 01:45:46','2023-07-15 20:15:46','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Our Cases</h2>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Home\n									</li>\n								<li>\n										Cases\n									</li>\n						</ul>\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h2>Couple Problem Solving</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h2>Depression Problem</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h2>Individual Coaching</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-talking-to-family-counselor.jpg\"  alt=\"Family Counseling\">\n                <h2>Family Counseling</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/man-in-stress.jpg\"  alt=\"Stress Management\">\n                <h2>Stress Management</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/psychotherapist-talking-with-patients-of-support-group.jpg\"  alt=\"Group Theraphy\">\n                <h2>Group Theraphy</h2>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n			        <!-- link opening -->\n                <!-- end link opening -->\n                            <h3>\n                    12 Years Of Experiences                </h3>\n                        		  <p>Lorem ipsum dolor sit amet, consect adipiscing elit, sed do eiusmod tempor incididunt ut labore </p>\n                                                            <a href=\"#\" target=\"_self\" rel=\"noopener\">\n                                        Make Appointment\n                                    </a>\n			<h5>Testimonials</h5>		\n			<h2>What Patients Say About Us</h2>		\n										<img width=\"320\" height=\"320\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/MKLVKTE.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/MKLVKTE.jpg 320w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/MKLVKTE-300x300.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/MKLVKTE-150x150.jpg 150w\" sizes=\"(max-width: 320px) 100vw, 320px\" />									\n									<strong>Carlos Stein</strong>\n									Student\n																									<p>vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia</p>\n																							<!-- .commentor-content END -->\n										<img width=\"320\" height=\"320\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/UUFGSJH.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/UUFGSJH.jpg 320w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/UUFGSJH-300x300.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/UUFGSJH-150x150.jpg 150w\" sizes=\"(max-width: 320px) 100vw, 320px\" />									\n									<strong>Aneesa Andrews</strong>\n									Co-Founder HCM\n																									<p>vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia</p>\n																							<!-- .commentor-content END -->\n										<img width=\"320\" height=\"320\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/CASCKD8.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/CASCKD8.jpg 320w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/CASCKD8-300x300.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/CASCKD8-150x150.jpg 150w\" sizes=\"(max-width: 320px) 100vw, 320px\" />									\n									<strong>Carolyn Hood</strong>\n									Entrepreneur\n																									<p>vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident similique sunt in culpa qui officia deserunt mollitia</p>\n																							<!-- .commentor-content END -->\n			<h5>FAQ</h5>		\n			<h2>Popular Question</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n                        <a href=\"#collapse-6c3aab064b2fe72bd0e9\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-6c3aab064b2fe72bd0e9\" aria-expanded=\"true\" aria-controls=\"Collapse-6c3aab064b2fe72bd0e9\">\n                             How to Make an Appointment for Group Service?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-320303564b2fe72bd0e9\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-320303564b2fe72bd0e9\" aria-expanded=\"false\" aria-controls=\"Collapse-320303564b2fe72bd0e9\">\n                            How Long Will My Treatment Go on For?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-eb6229664b2fe72bd0e9\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-eb6229664b2fe72bd0e9\" aria-expanded=\"false\" aria-controls=\"Collapse-eb6229664b2fe72bd0e9\">\n                            What Payment Methods Are Available? \n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-6c3aab064b2fe72c0293\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-6c3aab064b2fe72c0293\" aria-expanded=\"true\" aria-controls=\"Collapse-6c3aab064b2fe72c0293\">\n                             How to Make an Appointment for Group Service?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-320303564b2fe72c0293\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-320303564b2fe72c0293\" aria-expanded=\"false\" aria-controls=\"Collapse-320303564b2fe72c0293\">\n                            How Long Will My Treatment Go on For?\n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->\n                        <a href=\"#collapse-eb6229664b2fe72c0293\" data-ekit-toggle=\"collapse\" data-target=\"#Collapse-eb6229664b2fe72c0293\" aria-expanded=\"false\" aria-controls=\"Collapse-eb6229664b2fe72c0293\">\n                            What Payment Methods Are Available? \n                                        <!-- Normal Icon -->\n                                        <!-- Active Icon -->\n                                                    </a>\n                            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam quis nostrud                        \n                <!-- .elementskit-card END -->','Cases','','inherit','closed','closed','','138-revision-v1','','','2023-07-16 01:45:46','2023-07-15 20:15:46','',138,'https://healthcaremarketing.in8.cdn-alpha.com/?p=141',0,'revision','',0),(142,1,'2023-07-16 01:45:49','2023-07-15 20:15:49','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Finding The Answers To Minding Your Mental Health\n</h1>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua admi veniam, quis nostrud exercitation ullamco		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<a href=\"https://www.youtube.com/watch?v=MLpWrANjFbI\"   ></a>		\n			<a href=\"#\">\n						Watch Intro\n					</a>\n			<h2>We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum 		\n                <h3>Quality Services</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n                <h3>Professional Team</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n                <h3>Dedicated Support</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--q9grra0jgaorjgb1af0o4stqtimw5bfd8j0rgpgf00.jpg\" title=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" alt=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" loading=\"lazy\" />															\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						We Are Trusted More Than 2580 Patients					\n				</h3>\n			<h5>About Mindary</h5>		\n			<h2>A Comprehensive Directory For Your Mental Health</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laborisWe provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuriesLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud 		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										To assist the individual in recovering from the crisis & problems\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','publish','closed','closed','','home','','','2023-07-16 01:45:51','2023-07-15 20:15:51','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?elementor_library=home',0,'elementor_library','',0),(143,1,'2023-07-16 01:45:51','2023-07-15 20:15:51','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Finding The Answers To Minding Your Mental Health\n</h1>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua admi veniam, quis nostrud exercitation ullamco		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<a href=\"https://www.youtube.com/watch?v=MLpWrANjFbI\"   ></a>		\n			<a href=\"#\">\n						Watch Intro\n					</a>\n			<h2>We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum 		\n                <h3>Quality Services</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n                <h3>Professional Team</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n                <h3>Dedicated Support</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--q9grra0jgaorjgb1af0o4stqtimw5bfd8j0rgpgf00.jpg\" title=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" alt=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" loading=\"lazy\" />															\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						We Are Trusted More Than 2580 Patients					\n				</h3>\n			<h5>About Mindary</h5>		\n			<h2>A Comprehensive Directory For Your Mental Health</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laborisWe provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuriesLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud 		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										To assist the individual in recovering from the crisis & problems\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','142-revision-v1','','','2023-07-16 01:45:51','2023-07-15 20:15:51','',142,'https://healthcaremarketing.in8.cdn-alpha.com/?p=143',0,'revision','',0),(156,1,'2023-07-16 01:50:06','2023-07-15 20:20:06','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#form\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://health.ideascloud.in/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n															<img width=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#form\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Healthcare Digital Marketing Services, A Brand Requires</h2>		\n                <h3>Healthcare Website Design</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M805 5109 c-356 -82 -641 -342 -748 -684 -113 -360 -12 -757 259\n-1015 90 -85 155 -131 267 -186 58 -29 76 -42 71 -54 -3 -8 -16 -56 -29 -107\n-43 -165 -58 -295 -58 -493 0 -205 15 -325 62 -505 16 -60 28 -111 28 -111 -1\n-1 -40 -20 -87 -44 -270 -134 -463 -378 -537 -678 -12 -47 -17 -112 -17 -217\n-1 -126 3 -164 23 -240 32 -124 73 -212 106 -227 34 -15 75 -1 95 34 13 25 13\n32 -4 75 -100 258 -100 489 3 708 115 246 308 407 572 476 164 43 384 25 543\n-46 192 -85 358 -251 442 -442 65 -147 87 -375 50 -526 -63 -264 -233 -473\n-478 -586 -129 -60 -201 -75 -358 -75 -110 0 -150 4 -215 22 -108 31 -226 90\n-309 157 -79 62 -120 71 -156 33 -44 -48 -22 -89 95 -176 178 -132 416 -202\n644 -189 362 21 678 231 841 557 24 47 43 86 44 87 0 1 51 -12 112 -27 311\n-80 686 -82 991 -5 53 14 104 27 113 30 14 4 23 -7 41 -52 74 -184 273 -389\n474 -490 559 -282 1255 41 1411 655 33 130 35 357 3 482 -74 290 -255 519\n-520 655 -52 26 -95 49 -96 49 -1 1 8 41 22 88 91 334 90 744 -5 1072 -11 38\n-19 70 -17 71 1 1 40 21 86 44 263 130 454 366 527 650 35 135 35 357 0 493\n-85 335 -338 602 -676 714 -82 28 -91 29 -295 29 -204 0 -212 -1 -295 -29\n-211 -71 -374 -186 -508 -360 -38 -49 -117 -188 -133 -233 -3 -8 -37 -2 -114\n18 -180 47 -300 62 -505 62 -198 0 -328 -15 -493 -58 -51 -13 -99 -26 -107\n-29 -11 -5 -25 15 -55 76 -128 265 -369 461 -659 537 -66 17 -108 21 -245 20\n-91 -1 -184 -5 -206 -10z m415 -154 c258 -68 478 -257 579 -500 48 -114 64\n-196 64 -325 0 -187 -48 -342 -153 -494 -55 -80 -63 -121 -30 -151 26 -24 74\n-23 101 1 35 31 99 131 140 218 76 163 109 350 90 518 -6 54 -11 102 -11 107\n0 23 244 75 429 92 201 17 456 -8 658 -67 l55 -16 -6 -39 c-54 -335 59 -673\n299 -898 226 -211 522 -306 836 -268 l66 8 22 -80 c86 -318 86 -659 -1 -984\nl-20 -78 -72 8 c-379 42 -727 -104 -945 -397 -104 -139 -161 -282 -188 -465\n-14 -93 -15 -128 -5 -224 6 -63 10 -116 8 -118 -9 -9 -208 -54 -302 -68 -139\n-21 -388 -21 -530 0 -95 14 -291 59 -301 69 -2 2 1 51 7 108 32 296 -74 594\n-289 809 -223 222 -520 323 -848 286 l-71 -8 -16 55 c-59 201 -84 456 -67 658\n17 193 69 428 94 428 7 0 53 -5 102 -11 167 -19 383 20 535 96 93 47 115 92\n68 142 -29 31 -48 29 -153 -16 -153 -66 -302 -89 -450 -71 -175 21 -346 100\n-475 218 -250 228 -341 579 -234 901 43 129 98 215 209 326 137 137 278 213\n457 244 75 14 271 6 348 -14z m3123 -4 c191 -50 374 -180 486 -344 47 -68 106\n-200 127 -282 26 -103 24 -303 -4 -410 -137 -512 -699 -782 -1178 -565 -231\n104 -409 316 -476 565 -28 108 -30 308 -3 410 69 267 262 492 507 592 160 65\n373 79 541 34z m-30 -3106 c299 -61 555 -311 639 -620 33 -123 30 -319 -6\n-438 -131 -434 -544 -693 -977 -611 -318 60 -568 290 -665 611 -23 77 -27 106\n-27 223 0 159 20 248 82 375 177 359 555 541 954 460z\"/>\n<path d=\"M1082 4564 c-64 -24 -137 -102 -159 -170 -17 -55 -18 -56 -50 -51\n-59 10 -137 58 -211 129 -63 62 -75 69 -100 64 -59 -14 -91 -96 -99 -252 -8\n-155 26 -252 124 -355 l54 -56 -32 -7 c-18 -3 -63 -9 -101 -13 -77 -7 -98 -24\n-98 -79 0 -38 19 -56 95 -90 98 -43 198 -64 304 -64 192 0 329 56 456 184 122\n123 176 239 195 423 8 70 15 100 34 128 36 53 67 142 60 171 -8 29 -40 54 -71\n54 -13 0 -45 -12 -71 -27 l-48 -27 -50 24 c-62 31 -169 37 -232 14z m186 -164\nc45 -32 47 -41 43 -145 -9 -225 -149 -407 -360 -469 -67 -20 -177 -22 -147 -3\n45 27 66 56 66 90 0 39 -13 52 -88 92 -106 57 -163 147 -170 269 l-5 79 34\n-25 c53 -40 114 -68 196 -89 164 -41 223 -16 223 97 0 118 112 174 208 104z\"/>\n<path d=\"M3067 3330 c-18 -14 -27 -32 -29 -57 -3 -36 -5 -38 -114 -94 -193\n-98 -483 -198 -515 -178 -8 5 -104 9 -214 9 -225 0 -250 -6 -292 -69 -22 -33\n-23 -41 -23 -275 0 -223 2 -243 20 -274 29 -47 75 -72 137 -72 28 0 54 -3 56\n-7 3 -5 10 -120 17 -258 10 -210 14 -254 29 -275 25 -35 82 -39 112 -9 24 24\n24 15 2 425 l-6 121 104 5 c89 5 115 2 184 -18 100 -29 116 -30 143 -1 27 29\n29 78 4 101 -18 16 -95 44 -179 66 l-43 11 0 183 0 182 97 28 c131 37 270 90\n375 142 48 24 92 44 98 44 7 0 10 -135 10 -399 l0 -400 -64 30 c-71 33 -106\n32 -131 -4 -38 -54 -12 -92 105 -153 85 -45 90 -49 90 -80 0 -64 71 -96 121\n-55 l24 19 3 624 c1 342 0 633 -3 646 -8 32 -41 62 -69 62 -13 0 -35 -9 -49\n-20z m-757 -665 l0 -195 -140 0 -140 0 0 195 0 195 140 0 140 0 0 -195z\"/>\n<path d=\"M4189 4696 c-78 -21 -144 -80 -180 -160 -17 -40 -23 -75 -27 -183\nl-5 -133 -59 0 c-53 0 -63 -3 -90 -30 -24 -25 -29 -36 -24 -58 11 -46 41 -62\n111 -62 l64 0 3 -239 c3 -218 5 -241 22 -260 24 -27 86 -29 109 -3 14 16 17\n52 19 258 l3 239 77 5 c88 6 109 19 110 70 1 25 -6 40 -26 57 -23 19 -38 23\n-98 23 l-70 0 4 125 c3 105 7 129 24 152 32 44 80 63 157 63 38 0 77 5 88 11\n48 25 44 105 -7 128 -32 14 -146 13 -205 -3z\"/>\n<path d=\"M3715 1526 c-38 -16 -102 -87 -112 -123 -5 -16 -8 -194 -8 -398 l0\n-370 25 -45 c28 -49 73 -84 129 -100 48 -13 704 -13 752 0 56 16 101 51 129\n100 l25 45 0 380 c0 416 1 406 -62 469 -54 55 -60 56 -470 56 -289 -1 -385 -4\n-408 -14z m780 -160 c14 -20 15 -69 13 -366 -3 -325 -4 -342 -22 -356 -29 -21\n-693 -21 -722 0 -18 14 -19 31 -22 356 -2 297 -1 346 13 366 l15 24 355 0 355\n0 15 -24z\"/>\n<path d=\"M4046 1225 c-125 -44 -181 -195 -118 -316 83 -160 311 -160 394 0 96\n184 -80 386 -276 316z m129 -160 c70 -69 -30 -170 -102 -103 -14 13 -23 33\n-23 50 0 36 40 78 75 78 14 0 37 -11 50 -25z\"/>\n<path d=\"M791 1406 c-49 -27 -50 -39 -51 -379 0 -338 3 -362 49 -387 51 -27\n82 -14 361 146 162 93 278 166 288 181 20 32 21 83 0 114 -23 35 -557 339\n-594 339 -16 -1 -40 -7 -53 -14z m296 -282 c93 -53 169 -98 171 -99 1 -1 -71\n-44 -160 -95 -90 -52 -173 -100 -185 -108 l-23 -14 0 212 c0 183 2 211 15 206\n8 -3 90 -49 182 -102z\"/>\n</g>\n</svg>\n                <h3>Healthcare Social Media Management</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M2567 4629 c-286 -42 -582 -177 -796 -363 l-65 -56 -362 0 c-361 0\n-363 0 -384 -22 -39 -42 -19 -101 41 -118 19 -6 154 -10 301 -10 l267 0 -47\n-64 c-26 -35 -51 -71 -57 -80 -9 -15 -66 -16 -662 -10 l-653 7 0 79 0 78 275\n0 c269 0 275 0 295 22 41 44 13 111 -52 123 -18 4 -154 5 -303 3 -302 -3 -318\n-7 -349 -72 -15 -31 -16 -161 -16 -1456 0 -1295 1 -1425 16 -1456 31 -66 16\n-64 617 -64 532 0 544 0 562 20 25 28 23 76 -4 103 -22 22 -22 22 -531 25\nl-510 3 0 1221 0 1220 607 -7 c335 -4 609 -9 611 -10 2 -2 -4 -18 -13 -35 -9\n-18 -34 -85 -55 -149 l-38 -116 -384 -2 c-270 -2 -390 -6 -405 -15 -13 -6 -27\n-27 -33 -47 -13 -46 -13 -585 0 -630 17 -62 7 -60 436 -61 l390 0 29 -92 c16\n-51 31 -99 33 -105 3 -10 -87 -13 -427 -13 -430 0 -430 0 -451 -22 -37 -40\n-21 -97 34 -118 17 -6 190 -10 476 -10 l449 0 17 -33 c9 -17 34 -58 55 -89 22\n-31 39 -62 39 -67 0 -8 -163 -11 -525 -11 l-524 0 -21 -22 c-37 -40 -21 -97\n34 -118 18 -6 229 -10 603 -10 l575 0 75 -70 c93 -87 255 -196 376 -254 429\n-205 921 -206 1350 -4 l107 51 93 -90 c106 -104 138 -118 210 -89 l42 16 115\n-115 115 -116 -1343 3 -1344 3 -19 -24 c-23 -28 -24 -69 -3 -99 15 -21 21 -22\n193 -22 98 0 180 -2 183 -5 2 -3 -9 -56 -26 -119 l-30 -113 -101 -6 c-56 -4\n-120 -13 -143 -21 -95 -34 -174 -113 -207 -207 -22 -60 -20 -181 3 -202 15\n-13 130 -16 1049 -19 980 -3 1032 -2 1051 15 26 24 33 62 22 136 -11 80 -41\n140 -96 195 -71 72 -120 90 -253 96 l-114 5 -32 117 c-18 65 -30 120 -27 123\n3 3 316 2 696 -1 l691 -7 185 -181 c107 -106 202 -190 225 -201 60 -29 180\n-32 237 -7 144 63 212 222 157 367 -20 53 -42 80 -201 241 l-178 181 0 1277\nc0 1162 -1 1281 -16 1312 -30 64 -33 64 -447 64 l-375 0 -73 62 c-220 184\n-487 306 -774 353 -98 16 -369 18 -468 4z m458 -154 c208 -34 427 -124 598\n-245 286 -205 494 -528 563 -877 13 -66 22 -88 42 -103 31 -25 63 -25 93 -1\n20 16 24 27 22 68 -3 68 -47 230 -92 340 l-39 93 179 0 179 0 0 -1022 0 -1023\n-124 124 -125 124 15 28 c18 36 18 92 0 127 -8 15 -50 62 -94 106 l-80 78 44\n92 c23 50 59 139 78 197 34 101 76 307 76 372 0 42 -35 77 -75 77 -51 0 -66\n-26 -85 -152 -51 -335 -188 -599 -429 -830 -229 -220 -517 -355 -830 -389\n-647 -70 -1271 325 -1490 944 -291 825 241 1726 1104 1871 110 19 359 19 470\n1z m1545 -495 l0 -80 -221 2 -221 3 -54 78 -55 77 276 0 275 0 0 -80z m-3345\n-887 c0 -109 3 -210 8 -225 l7 -28 -325 0 -325 0 0 225 0 225 318 0 317 0 0\n-197z m2918 -991 l57 -57 -190 -190 -190 -190 -60 60 -60 60 93 76 c87 72 188\n176 251 262 16 20 31 37 35 37 4 0 32 -26 64 -58z m439 -629 c201 -203 371\n-378 377 -390 26 -51 1 -131 -51 -163 -21 -13 -51 -20 -83 -20 l-49 0 -378\n377 -378 378 92 92 c51 51 95 93 98 93 3 0 170 -165 372 -367z m-1811 -401\nc15 -51 30 -104 33 -117 l6 -25 -450 0 c-425 0 -451 1 -446 18 3 9 17 60 31\n112 15 52 29 98 31 102 3 5 177 7 387 6 l382 -3 26 -93z m406 -315 c44 -23\n103 -94 103 -124 0 -7 -1830 -5 -1838 2 -2 2 3 16 12 33 19 37 79 90 109 96\n12 3 31 7 42 10 11 3 363 3 782 1 646 -3 766 -6 790 -18z\"/>\n<path d=\"M2685 4339 c-292 -24 -555 -143 -766 -346 -197 -190 -319 -408 -376\n-675 -25 -116 -25 -371 0 -488 64 -299 224 -566 445 -742 49 -39 82 -58 101\n-58 37 0 71 38 71 78 0 27 -12 41 -85 103 -184 154 -307 352 -372 596 -23 88\n-26 116 -26 268 0 151 3 181 25 266 36 132 78 229 147 336 230 355 621 547\n1042 512 518 -44 942 -447 1014 -964 12 -85 7 -276 -10 -363 -43 -226 -165\n-446 -335 -606 -290 -273 -694 -370 -1083 -260 -80 22 -90 23 -116 10 -47 -25\n-55 -70 -18 -110 16 -19 48 -32 114 -50 445 -117 890 -2 1219 316 194 188 319\n421 369 688 21 111 21 328 0 445 -69 390 -324 733 -678 911 -212 107 -444 152\n-682 133z\"/>\n<path d=\"M2025 3407 c-57 -19 -91 -44 -116 -84 -30 -49 -40 -101 -28 -149 18\n-71 63 -105 205 -159 65 -24 114 -58 114 -77 0 -5 -11 -20 -25 -33 -44 -45\n-134 -31 -209 32 -49 41 -116 10 -116 -55 0 -76 130 -152 258 -152 83 0 134\n22 184 78 48 53 65 111 49 171 -23 86 -70 125 -218 182 -104 40 -113 50 -80\n83 34 34 68 33 146 -5 56 -27 66 -29 92 -18 54 22 64 70 24 117 -52 62 -195\n97 -280 69z\"/>\n<path d=\"M2580 3413 c-51 -20 -50 -15 -50 -338 l0 -302 23 -21 c22 -20 33 -22\n163 -22 134 0 142 1 162 23 31 33 29 80 -4 106 -22 17 -41 21 -110 21 l-84 0\n0 60 0 60 79 0 c88 0 115 14 127 62 5 22 0 33 -24 58 -29 28 -35 30 -106 30\nl-76 0 0 60 0 60 90 0 c77 0 93 3 110 20 25 25 26 71 1 101 -18 23 -26 24\n-153 26 -73 1 -140 0 -148 -4z\"/>\n<path d=\"M3329 3406 c-102 -27 -181 -95 -228 -196 -22 -46 -26 -69 -26 -140 0\n-72 4 -93 27 -140 35 -72 99 -136 168 -169 47 -22 68 -26 150 -26 89 0 99 2\n158 34 67 36 114 86 153 161 33 63 35 212 3 281 -44 95 -131 168 -231 194 -68\n18 -112 18 -174 1z m143 -146 c155 -44 187 -257 52 -350 -66 -45 -172 -39\n-231 13 -71 62 -91 153 -52 234 43 89 135 129 231 103z\"/>\n<path d=\"M450 1758 c-41 -44 -13 -111 52 -123 18 -3 180 -5 359 -3 305 3 328\n4 348 22 27 25 29 86 3 109 -17 15 -58 17 -380 17 -359 0 -361 0 -382 -22z\"/>\n</g>\n</svg>\n                <h3>Healthcare Search Engine Optimization</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M3620 4984 c-241 -52 -449 -222 -549 -449 -26 -60 -61 -197 -61 -242\nl0 -33 -1235 0 c-1222 0 -1235 0 -1255 -20 -19 -19 -20 -33 -20 -509 l0 -489\n-119 -4 c-109 -4 -124 -7 -184 -36 -76 -38 -129 -92 -166 -171 -22 -47 -26\n-69 -26 -141 1 -71 5 -94 28 -141 50 -104 158 -183 267 -196 l49 -6 3 -239 c3\n-238 3 -240 27 -259 16 -13 39 -19 72 -19 l49 0 0 -462 0 -463 24 -50 c29 -60\n76 -107 136 -134 44 -20 63 -21 773 -21 l727 0 0 -165 0 -165 -104 0 c-187 0\n-260 -27 -313 -117 -26 -44 -28 -58 -32 -166 -3 -112 -2 -120 20 -143 l22 -24\n1058 0 1058 0 21 28 c20 25 22 36 18 142 -3 105 -6 119 -31 163 -53 90 -126\n117 -313 117 l-104 0 0 165 0 165 738 2 c697 3 739 4 772 22 49 26 98 74 123\n121 l22 40 3 1564 2 1564 -22 24 c-21 23 -22 23 -285 23 l-263 0 0 29 c0 16\n-7 62 -15 102 -63 296 -300 532 -597 593 -93 19 -230 19 -318 0z m353 -153\nc213 -75 373 -247 422 -452 68 -289 -74 -588 -341 -718 -168 -82 -380 -82\n-548 0 -219 107 -356 326 -356 569 0 288 191 534 473 611 95 25 264 21 350\n-10z m-940 -789 c59 -265 286 -491 562 -562 107 -27 264 -27 371 0 260 67 463\n255 548 512 14 42 26 88 26 102 l0 26 220 0 220 0 0 -1225 0 -1225 -2170 0\n-2170 0 0 180 0 180 50 0 c37 0 55 5 70 20 19 19 20 33 20 233 0 118 2 216 5\n219 3 3 123 -46 265 -110 l260 -115 0 -66 c0 -111 53 -185 154 -212 94 -26\n210 45 234 143 7 28 12 128 12 251 l0 203 51 24 c179 80 236 315 112 459 -41\n48 -117 101 -144 101 -16 0 -18 20 -21 233 -3 219 -4 234 -26 274 -58 110\n-212 138 -303 56 -55 -50 -62 -66 -69 -157 l-5 -78 -300 -134 c-181 -81 -313\n-134 -332 -134 l-33 0 0 440 0 440 1188 0 1187 0 18 -78z m-1479 -414 c14 -20\n16 -106 16 -736 l0 -713 -25 -24 c-28 -29 -42 -31 -73 -9 l-22 15 0 729 c0\n649 2 730 16 744 23 24 70 20 88 -6z m-244 -733 c0 -309 -3 -455 -10 -455 -13\n0 -490 210 -508 223 -9 8 -12 62 -10 235 l3 225 250 113 c138 61 256 112 263\n113 9 1 12 -96 12 -454z m-670 -1 l0 -205 -183 3 c-184 3 -184 3 -225 32 -50\n34 -92 112 -92 170 1 81 60 164 136 191 27 10 90 14 202 15 l162 0 0 -206z\nm1141 73 c37 -67 11 -174 -52 -207 -18 -10 -19 -6 -19 135 l0 146 24 -18 c14\n-10 34 -35 47 -56z m-1141 -607 l0 -190 -75 0 -75 0 0 183 c0 101 3 187 7 190\n3 4 37 7 75 7 l68 0 0 -190z m4340 -1026 c0 -216 -6 -246 -59 -277 -27 -16\n-167 -17 -2111 -17 -1909 0 -2084 1 -2110 16 -56 33 -60 53 -60 273 l0 201\n2170 0 2170 0 0 -196z m-1660 -599 l0 -165 -510 0 -510 0 0 165 0 165 510 0\n510 0 0 -165z m395 -320 c40 -16 55 -46 55 -111 l0 -44 -960 0 -960 0 0 51 c0\n62 12 87 53 104 49 22 1762 22 1812 0z\"/>\n<path d=\"M3730 4758 c-13 -14 -20 -36 -20 -62 -1 -39 -4 -43 -53 -71 -168 -96\n-168 -334 0 -430 l52 -30 0 -100 0 -100 -19 24 c-11 13 -20 36 -20 53 0 33\n-39 78 -68 78 -11 0 -32 -10 -47 -22 -25 -20 -27 -25 -22 -73 9 -92 66 -172\n145 -204 29 -12 32 -17 32 -57 0 -53 26 -84 70 -84 44 0 70 31 70 84 0 39 3\n45 28 54 46 16 103 73 128 127 57 121 6 268 -111 325 l-45 22 0 101 1 102 19\n-24 c11 -13 20 -36 20 -53 0 -35 40 -78 73 -78 13 0 33 10 45 23 61 65 -15\n230 -126 276 -29 12 -32 17 -32 57 0 76 -72 113 -120 62z m-20 -350 c0 -78 -1\n-81 -17 -65 -22 22 -24 106 -4 130 7 10 15 17 17 17 2 0 4 -37 4 -82z m177\n-350 c4 -34 1 -49 -16 -68 l-20 -25 -1 85 c0 77 1 83 16 68 9 -9 18 -36 21\n-60z\"/>\n<path d=\"M2062 3286 c-100 -101 -108 -121 -67 -161 40 -41 60 -33 161 67 102\n99 114 128 74 168 -40 40 -69 28 -168 -74z\"/>\n<path d=\"M3120 3201 c-95 -30 -191 -120 -225 -212 -19 -50 -20 -79 -20 -424 0\n-345 1 -374 20 -424 25 -68 101 -153 169 -189 l51 -27 680 0 680 0 53 28 c70\n37 128 97 161 166 l26 56 0 390 0 390 -26 56 c-33 69 -91 129 -161 166 l-53\n28 -665 2 c-366 1 -676 -2 -690 -6z m1355 -154 c21 -12 53 -42 70 -65 l30 -44\n3 -346 c2 -243 0 -359 -8 -387 -16 -55 -53 -101 -100 -125 -38 -19 -60 -20\n-673 -20 l-634 0 -44 23 c-29 16 -54 40 -74 72 l-30 48 0 362 0 362 30 48 c20\n32 45 56 74 72 l44 23 636 0 636 0 40 -23z\"/>\n<path d=\"M3559 2921 l-24 -19 0 -337 0 -337 25 -20 c16 -13 33 -18 50 -15 32\n7 561 312 578 334 19 26 14 62 -10 84 -36 31 -559 329 -578 329 -10 0 -28 -9\n-41 -19z m270 -264 c79 -46 143 -87 142 -93 0 -9 -278 -174 -293 -174 -5 0 -8\n79 -8 175 0 96 3 175 8 175 4 0 72 -37 151 -83z\"/>\n<path d=\"M2038 2943 c-35 -42 -27 -91 19 -112 33 -15 423 -15 457 0 13 7 30\n25 37 41 10 25 9 33 -8 56 l-20 27 -235 3 c-214 2 -236 1 -250 -15z\"/>\n<path d=\"M1991 2634 c-12 -15 -21 -36 -21 -47 0 -28 179 -207 207 -207 35 0\n73 38 73 73 0 25 -15 46 -88 119 -73 73 -94 88 -119 88 -22 0 -38 -8 -52 -26z\"/>\n<path d=\"M912 1334 c-22 -15 -30 -66 -14 -90 22 -33 48 -34 822 -34 l771 0 24\n25 c31 30 32 65 2 93 l-23 22 -780 0 c-689 0 -782 -2 -802 -16z\"/>\n<path d=\"M2780 1330 c-29 -29 -26 -74 6 -99 21 -17 41 -21 96 -21 97 0 128 18\n128 76 0 51 -24 64 -123 64 -74 0 -90 -3 -107 -20z\"/>\n</g>\n</svg>\n                <h3>Healthcare Paid Media Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/influencer.svg\"  alt=\"Healthcare Influencer Marketing\">\n                <h3>Healthcare Influencer Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/reputation-management.svg\"  alt=\"Healthcare Online Reputation Management\">\n                <h3>Healthcare Online Reputation Management</h3>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://health.ideascloud.in/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Upliftment Of Your Brand</h2>		\n		<p>Bring to us what troubles you and let us find the solution for you.</p>		\n			<a href=\"#form\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://health.ideascloud.in/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://health.ideascloud.in/hello-world/\">\n        </a>\n                    <a href=\"https://health.ideascloud.in/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://health.ideascloud.in/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://health.ideascloud.in/hello-world/\">Read More</a>\n                </article>','Home','','publish','closed','closed','','home','','','2023-07-19 10:12:40','2023-07-19 04:42:40','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?page_id=156',0,'page','',0),(157,1,'2023-07-16 01:50:06','2023-07-15 20:20:06','','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-16 01:50:06','2023-07-15 20:20:06','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=157',0,'revision','',0),(159,1,'2023-07-16 01:57:39','2023-07-15 20:27:39','','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-16 01:57:39','2023-07-15 20:27:39','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=159',0,'revision','',0),(160,1,'2023-07-16 01:57:39','2023-07-15 20:27:39','','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-16 01:57:39','2023-07-15 20:27:39','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=160',0,'revision','',0),(161,1,'2023-07-16 01:57:40','2023-07-15 20:27:40','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<a href=\"https://www.youtube.com/watch?v=MLpWrANjFbI\"   ></a>		\n			<a href=\"#\">\n						Watch Intro\n					</a>\n			<h2>We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum 		\n                <h3>Quality Services</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n                <h3>Professional Team</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n                <h3>Dedicated Support</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--q9grra0jgaorjgb1af0o4stqtimw5bfd8j0rgpgf00.jpg\" title=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" alt=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" loading=\"lazy\" />															\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						We Are Trusted More Than 2580 Patients					\n				</h3>\n			<h5>About Mindary</h5>		\n			<h2>A Comprehensive Directory For Your Mental Health</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laborisWe provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuriesLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud 		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										To assist the individual in recovering from the crisis & problems\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-16 01:57:40','2023-07-15 20:27:40','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=161',0,'revision','',0),(162,1,'2023-07-16 01:59:11','2023-07-15 20:29:11',' ','','','publish','closed','closed','','162','','','2023-07-16 01:59:11','2023-07-15 20:29:11','',0,'https://healthcaremarketing.in8.cdn-alpha.com/?p=162',1,'nav_menu_item','',0),(164,1,'2023-07-16 15:55:44','2023-07-16 10:25:44','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<a href=\"https://www.youtube.com/watch?v=MLpWrANjFbI\"   ></a>		\n			<a href=\"#\">\n						Watch Intro\n					</a>\n			<h2>We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum 		\n                <h3>Quality Services</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n                <h3>Professional Team</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n                <h3>Dedicated Support</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--q9grra0jgaorjgb1af0o4stqtimw5bfd8j0rgpgf00.jpg\" title=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" alt=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" loading=\"lazy\" />															\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						We Are Trusted More Than 2580 Patients					\n				</h3>\n			<h5>About Mindary</h5>		\n			<h2>A Comprehensive Directory For Your Mental Health</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laborisWe provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuriesLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud 		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										To assist the individual in recovering from the crisis & problems\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-16 15:55:44','2023-07-16 10:25:44','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=164',0,'revision','',0),(165,1,'2023-07-16 15:55:45','2023-07-16 10:25:45','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<a href=\"https://www.youtube.com/watch?v=MLpWrANjFbI\"   ></a>		\n			<a href=\"#\">\n						Watch Intro\n					</a>\n			<h2>We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum 		\n                <h3>Quality Services</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n                <h3>Professional Team</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n                <h3>Dedicated Support</h3><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--q9grra0jgaorjgb1af0o4stqtimw5bfd8j0rgpgf00.jpg\" title=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" alt=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" loading=\"lazy\" />															\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						We Are Trusted More Than 2580 Patients					\n				</h3>\n			<h5>About Mindary</h5>		\n			<h2>A Comprehensive Directory For Your Mental Health</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laborisWe provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuriesLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud 		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										To assist the individual in recovering from the crisis & problems\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-16 15:55:45','2023-07-16 10:25:45','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=165',0,'revision','',0),(166,1,'2023-07-16 15:55:46','2023-07-16 10:25:46','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<a href=\"https://www.youtube.com/watch?v=MLpWrANjFbI\"   ></a>		\n			<a href=\"#\">\n						Watch Intro\n					</a>\n			<h2>We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum 		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--q9grra0jgaorjgb1af0o4stqtimw5bfd8j0rgpgf00.jpg\" title=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" alt=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" loading=\"lazy\" />															\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						We Are Trusted More Than 2580 Patients					\n				</h3>\n			<h5>About Mindary</h5>		\n			<h2>A Comprehensive Directory For Your Mental Health</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laborisWe provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuriesLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud 		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										To assist the individual in recovering from the crisis & problems\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-16 15:55:46','2023-07-16 10:25:46','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=166',0,'revision','',0),(176,1,'2023-07-16 16:23:41','2023-07-16 10:53:41','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<a href=\"https://www.youtube.com/watch?v=MLpWrANjFbI\"   ></a>		\n			<a href=\"#\">\n						Watch Intro\n					</a>\n			<h2>We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum 		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--q9grra0jgaorjgb1af0o4stqtimw5bfd8j0rgpgf00.jpg\" title=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" alt=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" loading=\"lazy\" />															\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						We Are Trusted More Than 2580 Patients					\n				</h3>\n			<h5>About Mindary</h5>		\n			<h2>A Comprehensive Directory For Your Mental Health</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laborisWe provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuriesLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud 		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										To assist the individual in recovering from the crisis & problems\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-16 16:23:41','2023-07-16 10:53:41','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=176',0,'revision','',0),(177,1,'2023-07-16 16:23:42','2023-07-16 10:53:42','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<a href=\"https://www.youtube.com/watch?v=MLpWrANjFbI\"   ></a>		\n			<a href=\"#\">\n						Watch Intro\n					</a>\n			<h2>We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum 		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--q9grra0jgaorjgb1af0o4stqtimw5bfd8j0rgpgf00.jpg\" title=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" alt=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" loading=\"lazy\" />															\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						We Are Trusted More Than 2580 Patients					\n				</h3>\n			<h5>About Mindary</h5>		\n			<h2>A Comprehensive Directory For Your Mental Health</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laborisWe provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuriesLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud 		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										To assist the individual in recovering from the crisis & problems\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-16 16:23:42','2023-07-16 10:53:42','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=177',0,'revision','',0),(178,1,'2023-07-16 16:23:43','2023-07-16 10:53:43','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum 		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--q9grra0jgaorjgb1af0o4stqtimw5bfd8j0rgpgf00.jpg\" title=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" alt=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" loading=\"lazy\" />															\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						We Are Trusted More Than 2580 Patients					\n				</h3>\n			<h5>About Mindary</h5>		\n			<h2>A Comprehensive Directory For Your Mental Health</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laborisWe provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuriesLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud 		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										To assist the individual in recovering from the crisis & problems\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-16 16:23:43','2023-07-16 10:53:43','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=178',0,'revision','',0),(180,1,'2023-07-17 01:17:31','2023-07-16 19:47:31','','Vesak Day','','inherit','open','closed','','vesak-day','','','2023-07-17 01:17:31','2023-07-16 19:47:31','',156,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day.gif',0,'attachment','image/gif',0),(181,1,'2023-07-17 01:21:12','2023-07-16 19:51:12','','Vesak Day (1)','','inherit','open','closed','','vesak-day-1','','','2023-07-17 01:21:12','2023-07-16 19:51:12','',156,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp',0,'attachment','image/webp',0),(182,1,'2023-07-17 01:50:03','2023-07-16 20:20:03','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum 		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--q9grra0jgaorjgb1af0o4stqtimw5bfd8j0rgpgf00.jpg\" title=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" alt=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" loading=\"lazy\" />															\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						We Are Trusted More Than 2580 Patients					\n				</h3>\n			<h5>About Mindary</h5>		\n			<h2>A Comprehensive Directory For Your Mental Health</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laborisWe provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuriesLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud 		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										To assist the individual in recovering from the crisis & problems\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 01:50:03','2023-07-16 20:20:03','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=182',0,'revision','',0),(183,1,'2023-07-17 01:50:04','2023-07-16 20:20:04','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>We Have More Than 12 Years Professional Experience in Psychology and Mental Health Counseling</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum 		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--q9grra0jgaorjgb1af0o4stqtimw5bfd8j0rgpgf00.jpg\" title=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" alt=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" loading=\"lazy\" />															\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						We Are Trusted More Than 2580 Patients					\n				</h3>\n			<h5>About Mindary</h5>		\n			<h2>A Comprehensive Directory For Your Mental Health</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laborisWe provide all aspects of medical practice for your whole family, including general check-ups or assisting you with specific injuriesLorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud 		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										To assist the individual in recovering from the crisis & problems\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 01:50:04','2023-07-16 20:20:04','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=183',0,'revision','',0),(184,1,'2023-07-17 01:50:05','2023-07-16 20:20:05','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--q9grra0jgaorjgb1af0o4stqtimw5bfd8j0rgpgf00.jpg\" title=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" alt=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" loading=\"lazy\" />															\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						We Are Trusted More Than 2580 Patients					\n				</h3>\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 01:50:05','2023-07-16 20:20:05','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=184',0,'revision','',0),(186,1,'2023-07-17 11:37:54','2023-07-17 06:07:54','','Vesak Day','','inherit','open','closed','','vesak-day-2','','','2023-07-17 11:37:54','2023-07-17 06:07:54','',156,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day.webp',0,'attachment','image/webp',0),(187,1,'2023-07-17 11:42:11','2023-07-17 06:12:11','','About Us','','inherit','open','closed','','about-us-2','','','2023-07-17 11:42:19','2023-07-17 06:12:19','',156,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp',0,'attachment','image/webp',0),(188,1,'2023-07-17 11:43:49','2023-07-17 06:13:49','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--q9grra0jgaorjgb1af0o4stqtimw5bfd8j0rgpgf00.jpg\" title=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" alt=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" loading=\"lazy\" />															\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						We Are Trusted More Than 2580 Patients					\n				</h3>\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 11:43:49','2023-07-17 06:13:49','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=188',0,'revision','',0),(189,1,'2023-07-17 11:43:50','2023-07-17 06:13:50','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2000\" height=\"1333\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students.jpg 2000w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-300x200.jpg 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1024x682.jpg 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-768x512.jpg 768w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/counsel-of-students-1536x1024.jpg 1536w\" sizes=\"(max-width: 2000px) 100vw, 2000px\" />															\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy--q9grra0jgaorjgb1af0o4stqtimw5bfd8j0rgpgf00.jpg\" title=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" alt=\"senior-counselor-with-clipboard-talking-to-a-man-during-group-therapy-.jpg\" loading=\"lazy\" />															\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						We Are Trusted More Than 2580 Patients					\n				</h3>\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 11:43:50','2023-07-17 06:13:50','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=189',0,'revision','',0),(190,1,'2023-07-17 11:43:51','2023-07-17 06:13:51','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 11:43:51','2023-07-17 06:13:51','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=190',0,'revision','',0),(192,1,'2023-07-17 12:15:45','2023-07-17 06:45:45','','Facts about healthcare sector','','inherit','open','closed','','facts-about-healthcare-sector','','','2023-07-17 12:15:59','2023-07-17 06:45:59','',156,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp',0,'attachment','image/webp',0),(193,1,'2023-07-17 12:24:34','2023-07-17 06:54:34','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 12:24:34','2023-07-17 06:54:34','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=193',0,'revision','',0),(194,1,'2023-07-17 12:24:35','2023-07-17 06:54:35','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Psychologists</h3>								\n												0\n																			+\n					<h3>Successful Cases</h3>								\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 12:24:35','2023-07-17 06:54:35','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=194',0,'revision','',0),(195,1,'2023-07-17 12:24:36','2023-07-17 06:54:36','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Successful Projects</h3>								\n												0\n																			+\n					<h3>Ongoing Projects</h3>								\n			<h5>Smartphone Penetration</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 12:24:36','2023-07-17 06:54:36','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=195',0,'revision','',0),(196,1,'2023-07-17 12:24:57','2023-07-17 06:54:57','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Successful Projects</h3>								\n												0\n																			+\n					<h3>Ongoing Projects</h3>								\n			<h5>Smartphone Penetration</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 12:24:57','2023-07-17 06:54:57','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=196',0,'revision','',0),(197,1,'2023-07-17 12:24:58','2023-07-17 06:54:58','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Successful Projects</h3>								\n												0\n																			+\n					<h3>Ongoing Projects</h3>								\n			<h5>Smartphone Penetration</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 12:24:58','2023-07-17 06:54:58','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=197',0,'revision','',0),(198,1,'2023-07-17 12:24:59','2023-07-17 06:54:59','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Successful Projects</h3>								\n												0\n																			+\n					<h3>Ongoing Projects</h3>								\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 12:24:59','2023-07-17 06:54:59','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=198',0,'revision','',0),(201,1,'2023-07-17 14:05:56','2023-07-17 08:35:56','','Strong Internet Presence','','inherit','open','closed','','strong-internet-presence','','','2023-07-17 14:06:05','2023-07-17 08:36:05','',156,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp',0,'attachment','image/webp',0),(202,1,'2023-07-17 14:07:43','2023-07-17 08:37:43','','Outstanding Online Reputation','','inherit','open','closed','','outstanding-online-reputation','','','2023-07-17 14:07:51','2023-07-17 08:37:51','',156,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp',0,'attachment','image/webp',0),(203,1,'2023-07-17 14:08:03','2023-07-17 08:38:03','','Solidified Patient Experience','','inherit','open','closed','','solidified-patient-experience','','','2023-07-17 14:08:11','2023-07-17 08:38:11','',156,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp',0,'attachment','image/webp',0),(204,1,'2023-07-17 14:08:23','2023-07-17 08:38:23','','Satisfied & Loyal Patient Base','','inherit','open','closed','','satisfied-loyal-patient-base','','','2023-07-17 14:08:33','2023-07-17 08:38:33','',156,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp',0,'attachment','image/webp',0),(206,1,'2023-07-17 14:19:06','2023-07-17 08:49:06','','Heathcare Industry Potrait','','inherit','open','closed','','heathcare-industry-potrait','','','2023-07-17 14:19:17','2023-07-17 08:49:17','',156,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Heathcare-Industry-Potrait.webp',0,'attachment','image/webp',0),(207,1,'2023-07-17 14:21:24','2023-07-17 08:51:24','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Successful Projects</h3>								\n												0\n																			+\n					<h3>Ongoing Projects</h3>								\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 14:21:24','2023-07-17 08:51:24','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=207',0,'revision','',0),(208,1,'2023-07-17 14:21:25','2023-07-17 08:51:25','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Successful Projects</h3>								\n												0\n																			+\n					<h3>Ongoing Projects</h3>								\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>Why Choose Us</h5>		\n			<h2>The Best Theraphy For Your Mental Satisfactions</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris		\n            Quality Therapy Services\n                            82%\n            Flexible Time\n                            92%\n            Best Conclusion\n                            86%\n            Professional Psychologist\n                            90%\n					<ul>\n							<li>\n										24/7 Phone counseling services for clients\n									</li>\n								<li>\n										Really know the true needs and expectations of clients\n									</li>\n						</ul>\n					<ul>\n							<li>\n										Really know the true needs and expectations of clients\n									</li>\n								<li>\n										All reports for clients are made simple and easy to understand\n									</li>\n						</ul>\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/mental-problems-q9grsao8uu3jeav1nh3a08fxl57dm1bq9zs1orxmv4.jpg\" title=\"mental-problems.jpg\" alt=\"mental-problems.jpg\" loading=\"lazy\" />															\n			<h4>Working Hours</h4>		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n					<ul>\n							<li>\n										Mon - Thurs : 9.00 A.M - 5.00 P.M\n									</li>\n								<li>\n										Fri - Sun : 9.00 A.M - 1.00 P.M\n									</li>\n						</ul>\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-box.min.css\">		\n				<h3>\n						(+021) 2336 278					\n				</h3>\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 14:21:25','2023-07-17 08:51:25','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=208',0,'revision','',0),(209,1,'2023-07-17 14:21:26','2023-07-17 08:51:26','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Successful Projects</h3>								\n												0\n																			+\n					<h3>Ongoing Projects</h3>								\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 14:21:26','2023-07-17 08:51:26','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=209',0,'revision','',0),(211,1,'2023-07-17 17:10:17','2023-07-17 11:40:17','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Successful Projects</h3>								\n												0\n																			+\n					<h3>Ongoing Projects</h3>								\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 17:10:17','2023-07-17 11:40:17','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=211',0,'revision','',0),(212,1,'2023-07-17 17:10:18','2023-07-17 11:40:18','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Successful Projects</h3>								\n												0\n																			+\n					<h3>Ongoing Projects</h3>								\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2> Our Successfully Completed Cases</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 17:10:18','2023-07-17 11:40:18','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=212',0,'revision','',0),(213,1,'2023-07-17 17:10:19','2023-07-17 11:40:19','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Successful Projects</h3>								\n												0\n																			+\n					<h3>Ongoing Projects</h3>								\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 17:10:19','2023-07-17 11:40:19','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=213',0,'revision','',0),(214,1,'2023-07-17 17:26:25','2023-07-17 11:56:25','<input type=\"text\" id=\"mf-input-text-32bfc49\" \n				name=\"mf-listing-fname\" \n				placeholder=\"${ parent.decodeEntities(`First Name `) } \"\n				onInput=${ parent.handleChange }\n									aria-invalid=${validation.errors[\'mf-listing-fname\'] ? \'true\' : \'false\'}\n					ref=${ el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":true,\"expression\":\"null\"}, el) }\n							/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-listing-fname\"\n					as=${html``}\n					/>\n			<input type=\"text\" id=\"mf-input-text-4fd27d5\" \n				name=\"mf-listing-lname\" \n				placeholder=\"${ parent.decodeEntities(`Last Name`) } \"\n				onInput=${ parent.handleChange }	\n									aria-invalid=${validation.errors[\'mf-listing-lname\'] ? \'true\' : \'false\'}\n					ref=${ el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":true,\"expression\":\"null\"}, el) }\n			/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-listing-lname\"\n					as=${html``}\n					/>\n			<input\n				type=\"number\"\n				step=\"any\"\n				class=\"mf-input \"\n				id=\"mf-input-mobile-82569cf\"\n				name=\"mf-number\"\n				placeholder=\"${ parent.decodeEntities(`Number`) } \"\n									onInput=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-number\'] ? \'true\' : \'false\'}\n					ref=${el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":10,\"maxLength\":10,\"type\":\"by_character_length\",\"required\":true,\"expression\":\"null\"}, el)}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-number\"\n					as=${html``}\n					/>\n			<input \n				type=\"email\" \n				defaultValue=\"\" \n				class=\"mf-input \" \n				id=\"mf-input-email-6359b69\" \n				name=\"mf-email\" \n				placeholder=\"${ parent.decodeEntities(`Email`) } \" \n				onBlur=${parent.handleChange} onFocus=${parent.handleChange} aria-invalid=${validation.errors[\'mf-email\'] ? \'true\' : \'false\' } \n				ref=${el=> parent.activateValidation({\"message\":\"This field is required.\",\"emailMessage\":\"Please enter a valid Email address\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":true,\"expression\":\"null\"}, el)}\n							/>\n						<${validation.ErrorMessage} \n				errors=${validation.errors} \n				name=\"mf-email\" \n				as=${html``}\n			/>\n			<input\n				type=\"text\"\n				class=\"mf-input \"\n				id=\"mf-input-text-0dcb4f7\"\n				name=\"mf-text\"\n				placeholder=\"${ parent.decodeEntities(`How Can We Help You?`) } \"\n									onInput=${parent.handleChange}\n					onBlur=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-text\'] ? \'true\' : \'false\'}\n					ref=${el =>{\n												parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)\n					}}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-text\"\n					as=${html``}\n					/>\n							<button type=\"submit\" id=\"\">\n					${ parent.decodeEntities(`Book Now`) } \n				</button>','Book Now','','publish','closed','closed','','book-now','','','2023-07-17 17:49:39','2023-07-17 12:19:39','',0,'https://healthcaremarketing.in8.cdn-alpha.com/metform-form/book-now/',0,'metform-form','',0),(216,1,'2023-07-17 17:49:37','2023-07-17 12:19:37','','Book Now','','inherit','closed','closed','','214-revision-v1','','','2023-07-17 17:49:37','2023-07-17 12:19:37','',214,'https://healthcaremarketing.in8.cdn-alpha.com/?p=216',0,'revision','',0),(217,1,'2023-07-17 17:49:38','2023-07-17 12:19:38','','Book Now','','inherit','closed','closed','','214-revision-v1','','','2023-07-17 17:49:38','2023-07-17 12:19:38','',214,'https://healthcaremarketing.in8.cdn-alpha.com/?p=217',0,'revision','',0),(218,1,'2023-07-17 17:49:39','2023-07-17 12:19:39','<input type=\"text\" id=\"mf-input-text-32bfc49\" \n				name=\"mf-listing-fname\" \n				placeholder=\"${ parent.decodeEntities(`First Name `) } \"\n				onInput=${ parent.handleChange }\n									aria-invalid=${validation.errors[\'mf-listing-fname\'] ? \'true\' : \'false\'}\n					ref=${ el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":true,\"expression\":\"null\"}, el) }\n							/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-listing-fname\"\n					as=${html``}\n					/>\n			<input type=\"text\" id=\"mf-input-text-4fd27d5\" \n				name=\"mf-listing-lname\" \n				placeholder=\"${ parent.decodeEntities(`Last Name`) } \"\n				onInput=${ parent.handleChange }	\n									aria-invalid=${validation.errors[\'mf-listing-lname\'] ? \'true\' : \'false\'}\n					ref=${ el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":true,\"expression\":\"null\"}, el) }\n			/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-listing-lname\"\n					as=${html``}\n					/>\n			<input\n				type=\"number\"\n				step=\"any\"\n				class=\"mf-input \"\n				id=\"mf-input-mobile-82569cf\"\n				name=\"mf-number\"\n				placeholder=\"${ parent.decodeEntities(`Number`) } \"\n									onInput=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-number\'] ? \'true\' : \'false\'}\n					ref=${el => parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":10,\"maxLength\":10,\"type\":\"by_character_length\",\"required\":true,\"expression\":\"null\"}, el)}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-number\"\n					as=${html``}\n					/>\n			<input \n				type=\"email\" \n				defaultValue=\"\" \n				class=\"mf-input \" \n				id=\"mf-input-email-6359b69\" \n				name=\"mf-email\" \n				placeholder=\"${ parent.decodeEntities(`Email`) } \" \n				onBlur=${parent.handleChange} onFocus=${parent.handleChange} aria-invalid=${validation.errors[\'mf-email\'] ? \'true\' : \'false\' } \n				ref=${el=> parent.activateValidation({\"message\":\"This field is required.\",\"emailMessage\":\"Please enter a valid Email address\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":true,\"expression\":\"null\"}, el)}\n							/>\n						<${validation.ErrorMessage} \n				errors=${validation.errors} \n				name=\"mf-email\" \n				as=${html``}\n			/>\n			<input\n				type=\"text\"\n				class=\"mf-input \"\n				id=\"mf-input-text-0dcb4f7\"\n				name=\"mf-text\"\n				placeholder=\"${ parent.decodeEntities(`How Can We Help You?`) } \"\n									onInput=${parent.handleChange}\n					onBlur=${parent.handleChange}\n					aria-invalid=${validation.errors[\'mf-text\'] ? \'true\' : \'false\'}\n					ref=${el =>{\n												parent.activateValidation({\"message\":\"This field is required.\",\"minLength\":1,\"maxLength\":\"\",\"type\":\"none\",\"required\":false,\"expression\":\"null\"}, el)\n					}}\n								/>\n							<${validation.ErrorMessage}\n					errors=${validation.errors}\n					name=\"mf-text\"\n					as=${html``}\n					/>\n							<button type=\"submit\" id=\"\">\n					${ parent.decodeEntities(`Book Now`) } \n				</button>','Book Now','','inherit','closed','closed','','214-revision-v1','','','2023-07-17 17:49:39','2023-07-17 12:19:39','',214,'https://healthcaremarketing.in8.cdn-alpha.com/?p=218',0,'revision','',0),(219,1,'2023-07-17 18:45:50','2023-07-17 13:15:50','','Health-Cloud-Logo','','inherit','open','closed','','health-cloud-logo','','','2023-07-17 18:45:58','2023-07-17 13:15:58','',0,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Health-Cloud-Logo.webp',0,'attachment','image/webp',0),(233,1,'2023-07-17 19:14:34','2023-07-17 13:44:34','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Successful Projects</h3>								\n												0\n																			+\n					<h3>Ongoing Projects</h3>								\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 19:14:34','2023-07-17 13:44:34','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=233',0,'revision','',0),(234,1,'2023-07-17 19:14:34','2023-07-17 13:44:34','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Successful Projects</h3>								\n												0\n																			+\n					<h3>Ongoing Projects</h3>								\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 19:14:34','2023-07-17 13:44:34','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=234',0,'revision','',0),(235,1,'2023-07-17 19:14:35','2023-07-17 13:44:35','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Successful Projects</h3>								\n												0\n																			+\n					<h3>Ongoing Projects</h3>								\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-17 19:14:35','2023-07-17 13:44:35','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=235',0,'revision','',0),(237,1,'2023-07-18 14:25:17','2023-07-18 08:55:17','','Animation - 1689670159417','','inherit','open','closed','','animation-1689670159417','','','2023-07-18 14:25:17','2023-07-18 08:55:17','',156,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Animation-1689670159417.json',0,'attachment','text/plain',0),(238,1,'2023-07-18 14:28:11','2023-07-18 08:58:11','','Animation - 1689670633776','','inherit','open','closed','','animation-1689670633776','','','2023-07-18 14:28:11','2023-07-18 08:58:11','',156,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Animation-1689670633776.json',0,'attachment','text/plain',0),(239,1,'2023-07-18 14:33:52','2023-07-18 09:03:52','','Animation - 1689670914229','','inherit','open','closed','','animation-1689670914229','','','2023-07-18 14:33:52','2023-07-18 09:03:52','',156,'https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Animation-1689670914229.json',0,'attachment','text/plain',0),(240,1,'2023-07-18 14:35:08','2023-07-18 09:05:08','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Successful Projects</h3>								\n												0\n																			+\n					<h3>Ongoing Projects</h3>								\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-18 14:35:08','2023-07-18 09:05:08','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=240',0,'revision','',0),(241,1,'2023-07-18 14:35:09','2023-07-18 09:05:09','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n			<h5>Best Psychology and Mental Health Counseling</h5>		\n			<h2>Trust Us To Be There To Help All and Make Things Well Again\n</h2>		\n												0\n																			+\n					<h3>Happy Clients</h3>								\n												0\n																			+\n					<h3>Years Of Experience</h3>								\n												0\n																			+\n					<h3>Successful Projects</h3>								\n												0\n																			+\n					<h3>Ongoing Projects</h3>								\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-18 14:35:09','2023-07-18 09:05:09','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=241',0,'revision','',0),(242,1,'2023-07-18 14:35:10','2023-07-18 09:05:10','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-18 14:35:10','2023-07-18 09:05:10','',156,'https://healthcaremarketing.in8.cdn-alpha.com/?p=242',0,'revision','',0),(243,1,'2023-07-18 15:14:19','2023-07-18 09:44:19','','placeholder-176.png','','inherit','open','closed','','placeholder-176-png','','','2023-07-18 15:14:19','2023-07-18 09:44:19','',0,'https://health.ideascloud.in/wp-content/uploads/2023/07/placeholder-176.png',0,'attachment','image/png',0),(245,1,'2023-07-18 15:33:49','2023-07-18 10:03:49','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-18 15:33:49','2023-07-18 10:03:49','',156,'https://health.ideascloud.in/?p=245',0,'revision','',0),(246,1,'2023-07-18 15:33:50','2023-07-18 10:03:50','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">\n        </a>\n                    <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://healthcaremarketing.in8.cdn-alpha.com/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-18 15:33:50','2023-07-18 10:03:50','',156,'https://health.ideascloud.in/?p=246',0,'revision','',0),(247,1,'2023-07-18 15:33:51','2023-07-18 10:03:51','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://health.ideascloud.in/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://health.ideascloud.in/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://health.ideascloud.in/hello-world/\">\n        </a>\n                    <a href=\"https://health.ideascloud.in/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://health.ideascloud.in/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://health.ideascloud.in/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-18 15:33:51','2023-07-18 10:03:51','',156,'https://health.ideascloud.in/?p=247',0,'revision','',0),(249,1,'2023-07-18 16:53:13','2023-07-18 11:23:13','','influencer','','inherit','open','closed','','influencer','','','2023-07-18 16:53:13','2023-07-18 11:23:13','',0,'https://health.ideascloud.in/wp-content/uploads/2023/07/influencer.svg',0,'attachment','image/svg+xml',0),(250,1,'2023-07-18 16:53:14','2023-07-18 11:23:14','','reputation-management','','inherit','open','closed','','reputation-management','','','2023-07-18 16:53:14','2023-07-18 11:23:14','',0,'https://health.ideascloud.in/wp-content/uploads/2023/07/reputation-management.svg',0,'attachment','image/svg+xml',0),(251,1,'2023-07-18 16:53:15','2023-07-18 11:23:15','','paid-content','','inherit','open','closed','','paid-content','','','2023-07-18 16:53:15','2023-07-18 11:23:15','',0,'https://health.ideascloud.in/wp-content/uploads/2023/07/paid-content.svg',0,'attachment','image/svg+xml',0),(252,1,'2023-07-18 16:53:16','2023-07-18 11:23:16','','seo','','inherit','open','closed','','seo','','','2023-07-18 16:53:16','2023-07-18 11:23:16','',0,'https://health.ideascloud.in/wp-content/uploads/2023/07/seo.svg',0,'attachment','image/svg+xml',0),(253,1,'2023-07-18 16:53:17','2023-07-18 11:23:17','','social-media','','inherit','open','closed','','social-media','','','2023-07-18 16:53:17','2023-07-18 11:23:17','',0,'https://health.ideascloud.in/wp-content/uploads/2023/07/social-media.svg',0,'attachment','image/svg+xml',0),(254,1,'2023-07-18 16:53:59','2023-07-18 11:23:59','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://health.ideascloud.in/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://health.ideascloud.in/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://health.ideascloud.in/hello-world/\">\n        </a>\n                    <a href=\"https://health.ideascloud.in/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://health.ideascloud.in/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://health.ideascloud.in/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-18 16:53:59','2023-07-18 11:23:59','',156,'https://health.ideascloud.in/?p=254',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (255,1,'2023-07-18 16:53:59','2023-07-18 11:23:59','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Our Psychology Services</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscin elit, sed do eiusmod tempor incididunt ut labore  dolore magna aliqua		\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style>		\n<a href=\"https://www.youtube.com/embed/1MTkZPys7mU?feature=oembed?playlist=1MTkZPys7mU&amp;mute=0&amp;autoplay=0&amp;loop=no&amp;controls=0&amp;start=0&amp;end=\" aria-label=\"video-popup\">\n						</a>					\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Stress Management\">\n                <h3>Stress Management</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/family-XNUKDAT.png\"  alt=\"Family Counseling\">\n                <h3>Family Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/anxiety-TYH9SPN.png\"  alt=\"Anxiety Disorder\">\n                <h3>Anxiety Disorder</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/couple-RUUMCJ.png\"  alt=\"Couple Counseling\">\n                <h3>Couple Counseling</h3><p>Lorem ipsum dolor sit amet, consecte adipiscing elit, sed do eiusmod tempor incidiunt ut labore</p>\n                    <a href=\"\"   >Read More</a>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://health.ideascloud.in/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Your Mental Health </h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://health.ideascloud.in/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://health.ideascloud.in/hello-world/\">\n        </a>\n                    <a href=\"https://health.ideascloud.in/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://health.ideascloud.in/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://health.ideascloud.in/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-18 16:53:59','2023-07-18 11:23:59','',156,'https://health.ideascloud.in/?p=255',0,'revision','',0),(256,1,'2023-07-18 16:54:00','2023-07-18 11:24:00','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Healthcare Digital Marketing Services, A Brand Requires</h2>		\n                <h3>Healthcare Website Design</h3>\n                <h3>Healthcare Social Media Management</h3>\n                <h3>Healthcare Search Engine Optimization</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Healthcare Paid Media Marketing\">\n                <h3>Healthcare Paid Media Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Healthcare Influencer Marketing\">\n                <h3>Healthcare Influencer Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Healthcare Online Reputation Management\">\n                <h3>Healthcare Online Reputation Management</h3>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://health.ideascloud.in/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Upliftment Of Your Brand</h2>		\n		<p>Bring to us what troubles you and let us find the solution for you.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://health.ideascloud.in/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://health.ideascloud.in/hello-world/\">\n        </a>\n                    <a href=\"https://health.ideascloud.in/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://health.ideascloud.in/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://health.ideascloud.in/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-18 16:54:00','2023-07-18 11:24:00','',156,'https://health.ideascloud.in/?p=256',0,'revision','',0),(257,1,'2023-07-18 16:59:54','2023-07-18 11:29:54','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Healthcare Digital Marketing Services, A Brand Requires</h2>		\n                <h3>Healthcare Website Design</h3>\n                <h3>Healthcare Social Media Management</h3>\n                <h3>Healthcare Search Engine Optimization</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Healthcare Paid Media Marketing\">\n                <h3>Healthcare Paid Media Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Healthcare Influencer Marketing\">\n                <h3>Healthcare Influencer Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Healthcare Online Reputation Management\">\n                <h3>Healthcare Online Reputation Management</h3>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://health.ideascloud.in/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Upliftment Of Your Brand</h2>		\n		<p>Bring to us what troubles you and let us find the solution for you.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://health.ideascloud.in/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://health.ideascloud.in/hello-world/\">\n        </a>\n                    <a href=\"https://health.ideascloud.in/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://health.ideascloud.in/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://health.ideascloud.in/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-18 16:59:54','2023-07-18 11:29:54','',156,'https://health.ideascloud.in/?p=257',0,'revision','',0),(258,1,'2023-07-18 16:59:55','2023-07-18 11:29:55','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Healthcare Digital Marketing Services, A Brand Requires</h2>		\n                <h3>Healthcare Website Design</h3>\n                <h3>Healthcare Social Media Management</h3>\n                <h3>Healthcare Search Engine Optimization</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Healthcare Paid Media Marketing\">\n                <h3>Healthcare Paid Media Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/RUUMCJY.png\"  alt=\"Healthcare Influencer Marketing\">\n                <h3>Healthcare Influencer Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/depression-2UJ6UY8.png\"  alt=\"Healthcare Online Reputation Management\">\n                <h3>Healthcare Online Reputation Management</h3>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://health.ideascloud.in/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Upliftment Of Your Brand</h2>		\n		<p>Bring to us what troubles you and let us find the solution for you.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://health.ideascloud.in/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://health.ideascloud.in/hello-world/\">\n        </a>\n                    <a href=\"https://health.ideascloud.in/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://health.ideascloud.in/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://health.ideascloud.in/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-18 16:59:55','2023-07-18 11:29:55','',156,'https://health.ideascloud.in/?p=258',0,'revision','',0),(259,1,'2023-07-18 16:59:56','2023-07-18 11:29:56','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Healthcare Digital Marketing Services, A Brand Requires</h2>		\n                <h3>Healthcare Website Design</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M805 5109 c-356 -82 -641 -342 -748 -684 -113 -360 -12 -757 259\n-1015 90 -85 155 -131 267 -186 58 -29 76 -42 71 -54 -3 -8 -16 -56 -29 -107\n-43 -165 -58 -295 -58 -493 0 -205 15 -325 62 -505 16 -60 28 -111 28 -111 -1\n-1 -40 -20 -87 -44 -270 -134 -463 -378 -537 -678 -12 -47 -17 -112 -17 -217\n-1 -126 3 -164 23 -240 32 -124 73 -212 106 -227 34 -15 75 -1 95 34 13 25 13\n32 -4 75 -100 258 -100 489 3 708 115 246 308 407 572 476 164 43 384 25 543\n-46 192 -85 358 -251 442 -442 65 -147 87 -375 50 -526 -63 -264 -233 -473\n-478 -586 -129 -60 -201 -75 -358 -75 -110 0 -150 4 -215 22 -108 31 -226 90\n-309 157 -79 62 -120 71 -156 33 -44 -48 -22 -89 95 -176 178 -132 416 -202\n644 -189 362 21 678 231 841 557 24 47 43 86 44 87 0 1 51 -12 112 -27 311\n-80 686 -82 991 -5 53 14 104 27 113 30 14 4 23 -7 41 -52 74 -184 273 -389\n474 -490 559 -282 1255 41 1411 655 33 130 35 357 3 482 -74 290 -255 519\n-520 655 -52 26 -95 49 -96 49 -1 1 8 41 22 88 91 334 90 744 -5 1072 -11 38\n-19 70 -17 71 1 1 40 21 86 44 263 130 454 366 527 650 35 135 35 357 0 493\n-85 335 -338 602 -676 714 -82 28 -91 29 -295 29 -204 0 -212 -1 -295 -29\n-211 -71 -374 -186 -508 -360 -38 -49 -117 -188 -133 -233 -3 -8 -37 -2 -114\n18 -180 47 -300 62 -505 62 -198 0 -328 -15 -493 -58 -51 -13 -99 -26 -107\n-29 -11 -5 -25 15 -55 76 -128 265 -369 461 -659 537 -66 17 -108 21 -245 20\n-91 -1 -184 -5 -206 -10z m415 -154 c258 -68 478 -257 579 -500 48 -114 64\n-196 64 -325 0 -187 -48 -342 -153 -494 -55 -80 -63 -121 -30 -151 26 -24 74\n-23 101 1 35 31 99 131 140 218 76 163 109 350 90 518 -6 54 -11 102 -11 107\n0 23 244 75 429 92 201 17 456 -8 658 -67 l55 -16 -6 -39 c-54 -335 59 -673\n299 -898 226 -211 522 -306 836 -268 l66 8 22 -80 c86 -318 86 -659 -1 -984\nl-20 -78 -72 8 c-379 42 -727 -104 -945 -397 -104 -139 -161 -282 -188 -465\n-14 -93 -15 -128 -5 -224 6 -63 10 -116 8 -118 -9 -9 -208 -54 -302 -68 -139\n-21 -388 -21 -530 0 -95 14 -291 59 -301 69 -2 2 1 51 7 108 32 296 -74 594\n-289 809 -223 222 -520 323 -848 286 l-71 -8 -16 55 c-59 201 -84 456 -67 658\n17 193 69 428 94 428 7 0 53 -5 102 -11 167 -19 383 20 535 96 93 47 115 92\n68 142 -29 31 -48 29 -153 -16 -153 -66 -302 -89 -450 -71 -175 21 -346 100\n-475 218 -250 228 -341 579 -234 901 43 129 98 215 209 326 137 137 278 213\n457 244 75 14 271 6 348 -14z m3123 -4 c191 -50 374 -180 486 -344 47 -68 106\n-200 127 -282 26 -103 24 -303 -4 -410 -137 -512 -699 -782 -1178 -565 -231\n104 -409 316 -476 565 -28 108 -30 308 -3 410 69 267 262 492 507 592 160 65\n373 79 541 34z m-30 -3106 c299 -61 555 -311 639 -620 33 -123 30 -319 -6\n-438 -131 -434 -544 -693 -977 -611 -318 60 -568 290 -665 611 -23 77 -27 106\n-27 223 0 159 20 248 82 375 177 359 555 541 954 460z\"/>\n<path d=\"M1082 4564 c-64 -24 -137 -102 -159 -170 -17 -55 -18 -56 -50 -51\n-59 10 -137 58 -211 129 -63 62 -75 69 -100 64 -59 -14 -91 -96 -99 -252 -8\n-155 26 -252 124 -355 l54 -56 -32 -7 c-18 -3 -63 -9 -101 -13 -77 -7 -98 -24\n-98 -79 0 -38 19 -56 95 -90 98 -43 198 -64 304 -64 192 0 329 56 456 184 122\n123 176 239 195 423 8 70 15 100 34 128 36 53 67 142 60 171 -8 29 -40 54 -71\n54 -13 0 -45 -12 -71 -27 l-48 -27 -50 24 c-62 31 -169 37 -232 14z m186 -164\nc45 -32 47 -41 43 -145 -9 -225 -149 -407 -360 -469 -67 -20 -177 -22 -147 -3\n45 27 66 56 66 90 0 39 -13 52 -88 92 -106 57 -163 147 -170 269 l-5 79 34\n-25 c53 -40 114 -68 196 -89 164 -41 223 -16 223 97 0 118 112 174 208 104z\"/>\n<path d=\"M3067 3330 c-18 -14 -27 -32 -29 -57 -3 -36 -5 -38 -114 -94 -193\n-98 -483 -198 -515 -178 -8 5 -104 9 -214 9 -225 0 -250 -6 -292 -69 -22 -33\n-23 -41 -23 -275 0 -223 2 -243 20 -274 29 -47 75 -72 137 -72 28 0 54 -3 56\n-7 3 -5 10 -120 17 -258 10 -210 14 -254 29 -275 25 -35 82 -39 112 -9 24 24\n24 15 2 425 l-6 121 104 5 c89 5 115 2 184 -18 100 -29 116 -30 143 -1 27 29\n29 78 4 101 -18 16 -95 44 -179 66 l-43 11 0 183 0 182 97 28 c131 37 270 90\n375 142 48 24 92 44 98 44 7 0 10 -135 10 -399 l0 -400 -64 30 c-71 33 -106\n32 -131 -4 -38 -54 -12 -92 105 -153 85 -45 90 -49 90 -80 0 -64 71 -96 121\n-55 l24 19 3 624 c1 342 0 633 -3 646 -8 32 -41 62 -69 62 -13 0 -35 -9 -49\n-20z m-757 -665 l0 -195 -140 0 -140 0 0 195 0 195 140 0 140 0 0 -195z\"/>\n<path d=\"M4189 4696 c-78 -21 -144 -80 -180 -160 -17 -40 -23 -75 -27 -183\nl-5 -133 -59 0 c-53 0 -63 -3 -90 -30 -24 -25 -29 -36 -24 -58 11 -46 41 -62\n111 -62 l64 0 3 -239 c3 -218 5 -241 22 -260 24 -27 86 -29 109 -3 14 16 17\n52 19 258 l3 239 77 5 c88 6 109 19 110 70 1 25 -6 40 -26 57 -23 19 -38 23\n-98 23 l-70 0 4 125 c3 105 7 129 24 152 32 44 80 63 157 63 38 0 77 5 88 11\n48 25 44 105 -7 128 -32 14 -146 13 -205 -3z\"/>\n<path d=\"M3715 1526 c-38 -16 -102 -87 -112 -123 -5 -16 -8 -194 -8 -398 l0\n-370 25 -45 c28 -49 73 -84 129 -100 48 -13 704 -13 752 0 56 16 101 51 129\n100 l25 45 0 380 c0 416 1 406 -62 469 -54 55 -60 56 -470 56 -289 -1 -385 -4\n-408 -14z m780 -160 c14 -20 15 -69 13 -366 -3 -325 -4 -342 -22 -356 -29 -21\n-693 -21 -722 0 -18 14 -19 31 -22 356 -2 297 -1 346 13 366 l15 24 355 0 355\n0 15 -24z\"/>\n<path d=\"M4046 1225 c-125 -44 -181 -195 -118 -316 83 -160 311 -160 394 0 96\n184 -80 386 -276 316z m129 -160 c70 -69 -30 -170 -102 -103 -14 13 -23 33\n-23 50 0 36 40 78 75 78 14 0 37 -11 50 -25z\"/>\n<path d=\"M791 1406 c-49 -27 -50 -39 -51 -379 0 -338 3 -362 49 -387 51 -27\n82 -14 361 146 162 93 278 166 288 181 20 32 21 83 0 114 -23 35 -557 339\n-594 339 -16 -1 -40 -7 -53 -14z m296 -282 c93 -53 169 -98 171 -99 1 -1 -71\n-44 -160 -95 -90 -52 -173 -100 -185 -108 l-23 -14 0 212 c0 183 2 211 15 206\n8 -3 90 -49 182 -102z\"/>\n</g>\n</svg>\n                <h3>Healthcare Social Media Management</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M2567 4629 c-286 -42 -582 -177 -796 -363 l-65 -56 -362 0 c-361 0\n-363 0 -384 -22 -39 -42 -19 -101 41 -118 19 -6 154 -10 301 -10 l267 0 -47\n-64 c-26 -35 -51 -71 -57 -80 -9 -15 -66 -16 -662 -10 l-653 7 0 79 0 78 275\n0 c269 0 275 0 295 22 41 44 13 111 -52 123 -18 4 -154 5 -303 3 -302 -3 -318\n-7 -349 -72 -15 -31 -16 -161 -16 -1456 0 -1295 1 -1425 16 -1456 31 -66 16\n-64 617 -64 532 0 544 0 562 20 25 28 23 76 -4 103 -22 22 -22 22 -531 25\nl-510 3 0 1221 0 1220 607 -7 c335 -4 609 -9 611 -10 2 -2 -4 -18 -13 -35 -9\n-18 -34 -85 -55 -149 l-38 -116 -384 -2 c-270 -2 -390 -6 -405 -15 -13 -6 -27\n-27 -33 -47 -13 -46 -13 -585 0 -630 17 -62 7 -60 436 -61 l390 0 29 -92 c16\n-51 31 -99 33 -105 3 -10 -87 -13 -427 -13 -430 0 -430 0 -451 -22 -37 -40\n-21 -97 34 -118 17 -6 190 -10 476 -10 l449 0 17 -33 c9 -17 34 -58 55 -89 22\n-31 39 -62 39 -67 0 -8 -163 -11 -525 -11 l-524 0 -21 -22 c-37 -40 -21 -97\n34 -118 18 -6 229 -10 603 -10 l575 0 75 -70 c93 -87 255 -196 376 -254 429\n-205 921 -206 1350 -4 l107 51 93 -90 c106 -104 138 -118 210 -89 l42 16 115\n-115 115 -116 -1343 3 -1344 3 -19 -24 c-23 -28 -24 -69 -3 -99 15 -21 21 -22\n193 -22 98 0 180 -2 183 -5 2 -3 -9 -56 -26 -119 l-30 -113 -101 -6 c-56 -4\n-120 -13 -143 -21 -95 -34 -174 -113 -207 -207 -22 -60 -20 -181 3 -202 15\n-13 130 -16 1049 -19 980 -3 1032 -2 1051 15 26 24 33 62 22 136 -11 80 -41\n140 -96 195 -71 72 -120 90 -253 96 l-114 5 -32 117 c-18 65 -30 120 -27 123\n3 3 316 2 696 -1 l691 -7 185 -181 c107 -106 202 -190 225 -201 60 -29 180\n-32 237 -7 144 63 212 222 157 367 -20 53 -42 80 -201 241 l-178 181 0 1277\nc0 1162 -1 1281 -16 1312 -30 64 -33 64 -447 64 l-375 0 -73 62 c-220 184\n-487 306 -774 353 -98 16 -369 18 -468 4z m458 -154 c208 -34 427 -124 598\n-245 286 -205 494 -528 563 -877 13 -66 22 -88 42 -103 31 -25 63 -25 93 -1\n20 16 24 27 22 68 -3 68 -47 230 -92 340 l-39 93 179 0 179 0 0 -1022 0 -1023\n-124 124 -125 124 15 28 c18 36 18 92 0 127 -8 15 -50 62 -94 106 l-80 78 44\n92 c23 50 59 139 78 197 34 101 76 307 76 372 0 42 -35 77 -75 77 -51 0 -66\n-26 -85 -152 -51 -335 -188 -599 -429 -830 -229 -220 -517 -355 -830 -389\n-647 -70 -1271 325 -1490 944 -291 825 241 1726 1104 1871 110 19 359 19 470\n1z m1545 -495 l0 -80 -221 2 -221 3 -54 78 -55 77 276 0 275 0 0 -80z m-3345\n-887 c0 -109 3 -210 8 -225 l7 -28 -325 0 -325 0 0 225 0 225 318 0 317 0 0\n-197z m2918 -991 l57 -57 -190 -190 -190 -190 -60 60 -60 60 93 76 c87 72 188\n176 251 262 16 20 31 37 35 37 4 0 32 -26 64 -58z m439 -629 c201 -203 371\n-378 377 -390 26 -51 1 -131 -51 -163 -21 -13 -51 -20 -83 -20 l-49 0 -378\n377 -378 378 92 92 c51 51 95 93 98 93 3 0 170 -165 372 -367z m-1811 -401\nc15 -51 30 -104 33 -117 l6 -25 -450 0 c-425 0 -451 1 -446 18 3 9 17 60 31\n112 15 52 29 98 31 102 3 5 177 7 387 6 l382 -3 26 -93z m406 -315 c44 -23\n103 -94 103 -124 0 -7 -1830 -5 -1838 2 -2 2 3 16 12 33 19 37 79 90 109 96\n12 3 31 7 42 10 11 3 363 3 782 1 646 -3 766 -6 790 -18z\"/>\n<path d=\"M2685 4339 c-292 -24 -555 -143 -766 -346 -197 -190 -319 -408 -376\n-675 -25 -116 -25 -371 0 -488 64 -299 224 -566 445 -742 49 -39 82 -58 101\n-58 37 0 71 38 71 78 0 27 -12 41 -85 103 -184 154 -307 352 -372 596 -23 88\n-26 116 -26 268 0 151 3 181 25 266 36 132 78 229 147 336 230 355 621 547\n1042 512 518 -44 942 -447 1014 -964 12 -85 7 -276 -10 -363 -43 -226 -165\n-446 -335 -606 -290 -273 -694 -370 -1083 -260 -80 22 -90 23 -116 10 -47 -25\n-55 -70 -18 -110 16 -19 48 -32 114 -50 445 -117 890 -2 1219 316 194 188 319\n421 369 688 21 111 21 328 0 445 -69 390 -324 733 -678 911 -212 107 -444 152\n-682 133z\"/>\n<path d=\"M2025 3407 c-57 -19 -91 -44 -116 -84 -30 -49 -40 -101 -28 -149 18\n-71 63 -105 205 -159 65 -24 114 -58 114 -77 0 -5 -11 -20 -25 -33 -44 -45\n-134 -31 -209 32 -49 41 -116 10 -116 -55 0 -76 130 -152 258 -152 83 0 134\n22 184 78 48 53 65 111 49 171 -23 86 -70 125 -218 182 -104 40 -113 50 -80\n83 34 34 68 33 146 -5 56 -27 66 -29 92 -18 54 22 64 70 24 117 -52 62 -195\n97 -280 69z\"/>\n<path d=\"M2580 3413 c-51 -20 -50 -15 -50 -338 l0 -302 23 -21 c22 -20 33 -22\n163 -22 134 0 142 1 162 23 31 33 29 80 -4 106 -22 17 -41 21 -110 21 l-84 0\n0 60 0 60 79 0 c88 0 115 14 127 62 5 22 0 33 -24 58 -29 28 -35 30 -106 30\nl-76 0 0 60 0 60 90 0 c77 0 93 3 110 20 25 25 26 71 1 101 -18 23 -26 24\n-153 26 -73 1 -140 0 -148 -4z\"/>\n<path d=\"M3329 3406 c-102 -27 -181 -95 -228 -196 -22 -46 -26 -69 -26 -140 0\n-72 4 -93 27 -140 35 -72 99 -136 168 -169 47 -22 68 -26 150 -26 89 0 99 2\n158 34 67 36 114 86 153 161 33 63 35 212 3 281 -44 95 -131 168 -231 194 -68\n18 -112 18 -174 1z m143 -146 c155 -44 187 -257 52 -350 -66 -45 -172 -39\n-231 13 -71 62 -91 153 -52 234 43 89 135 129 231 103z\"/>\n<path d=\"M450 1758 c-41 -44 -13 -111 52 -123 18 -3 180 -5 359 -3 305 3 328\n4 348 22 27 25 29 86 3 109 -17 15 -58 17 -380 17 -359 0 -361 0 -382 -22z\"/>\n</g>\n</svg>\n                <h3>Healthcare Search Engine Optimization</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M3620 4984 c-241 -52 -449 -222 -549 -449 -26 -60 -61 -197 -61 -242\nl0 -33 -1235 0 c-1222 0 -1235 0 -1255 -20 -19 -19 -20 -33 -20 -509 l0 -489\n-119 -4 c-109 -4 -124 -7 -184 -36 -76 -38 -129 -92 -166 -171 -22 -47 -26\n-69 -26 -141 1 -71 5 -94 28 -141 50 -104 158 -183 267 -196 l49 -6 3 -239 c3\n-238 3 -240 27 -259 16 -13 39 -19 72 -19 l49 0 0 -462 0 -463 24 -50 c29 -60\n76 -107 136 -134 44 -20 63 -21 773 -21 l727 0 0 -165 0 -165 -104 0 c-187 0\n-260 -27 -313 -117 -26 -44 -28 -58 -32 -166 -3 -112 -2 -120 20 -143 l22 -24\n1058 0 1058 0 21 28 c20 25 22 36 18 142 -3 105 -6 119 -31 163 -53 90 -126\n117 -313 117 l-104 0 0 165 0 165 738 2 c697 3 739 4 772 22 49 26 98 74 123\n121 l22 40 3 1564 2 1564 -22 24 c-21 23 -22 23 -285 23 l-263 0 0 29 c0 16\n-7 62 -15 102 -63 296 -300 532 -597 593 -93 19 -230 19 -318 0z m353 -153\nc213 -75 373 -247 422 -452 68 -289 -74 -588 -341 -718 -168 -82 -380 -82\n-548 0 -219 107 -356 326 -356 569 0 288 191 534 473 611 95 25 264 21 350\n-10z m-940 -789 c59 -265 286 -491 562 -562 107 -27 264 -27 371 0 260 67 463\n255 548 512 14 42 26 88 26 102 l0 26 220 0 220 0 0 -1225 0 -1225 -2170 0\n-2170 0 0 180 0 180 50 0 c37 0 55 5 70 20 19 19 20 33 20 233 0 118 2 216 5\n219 3 3 123 -46 265 -110 l260 -115 0 -66 c0 -111 53 -185 154 -212 94 -26\n210 45 234 143 7 28 12 128 12 251 l0 203 51 24 c179 80 236 315 112 459 -41\n48 -117 101 -144 101 -16 0 -18 20 -21 233 -3 219 -4 234 -26 274 -58 110\n-212 138 -303 56 -55 -50 -62 -66 -69 -157 l-5 -78 -300 -134 c-181 -81 -313\n-134 -332 -134 l-33 0 0 440 0 440 1188 0 1187 0 18 -78z m-1479 -414 c14 -20\n16 -106 16 -736 l0 -713 -25 -24 c-28 -29 -42 -31 -73 -9 l-22 15 0 729 c0\n649 2 730 16 744 23 24 70 20 88 -6z m-244 -733 c0 -309 -3 -455 -10 -455 -13\n0 -490 210 -508 223 -9 8 -12 62 -10 235 l3 225 250 113 c138 61 256 112 263\n113 9 1 12 -96 12 -454z m-670 -1 l0 -205 -183 3 c-184 3 -184 3 -225 32 -50\n34 -92 112 -92 170 1 81 60 164 136 191 27 10 90 14 202 15 l162 0 0 -206z\nm1141 73 c37 -67 11 -174 -52 -207 -18 -10 -19 -6 -19 135 l0 146 24 -18 c14\n-10 34 -35 47 -56z m-1141 -607 l0 -190 -75 0 -75 0 0 183 c0 101 3 187 7 190\n3 4 37 7 75 7 l68 0 0 -190z m4340 -1026 c0 -216 -6 -246 -59 -277 -27 -16\n-167 -17 -2111 -17 -1909 0 -2084 1 -2110 16 -56 33 -60 53 -60 273 l0 201\n2170 0 2170 0 0 -196z m-1660 -599 l0 -165 -510 0 -510 0 0 165 0 165 510 0\n510 0 0 -165z m395 -320 c40 -16 55 -46 55 -111 l0 -44 -960 0 -960 0 0 51 c0\n62 12 87 53 104 49 22 1762 22 1812 0z\"/>\n<path d=\"M3730 4758 c-13 -14 -20 -36 -20 -62 -1 -39 -4 -43 -53 -71 -168 -96\n-168 -334 0 -430 l52 -30 0 -100 0 -100 -19 24 c-11 13 -20 36 -20 53 0 33\n-39 78 -68 78 -11 0 -32 -10 -47 -22 -25 -20 -27 -25 -22 -73 9 -92 66 -172\n145 -204 29 -12 32 -17 32 -57 0 -53 26 -84 70 -84 44 0 70 31 70 84 0 39 3\n45 28 54 46 16 103 73 128 127 57 121 6 268 -111 325 l-45 22 0 101 1 102 19\n-24 c11 -13 20 -36 20 -53 0 -35 40 -78 73 -78 13 0 33 10 45 23 61 65 -15\n230 -126 276 -29 12 -32 17 -32 57 0 76 -72 113 -120 62z m-20 -350 c0 -78 -1\n-81 -17 -65 -22 22 -24 106 -4 130 7 10 15 17 17 17 2 0 4 -37 4 -82z m177\n-350 c4 -34 1 -49 -16 -68 l-20 -25 -1 85 c0 77 1 83 16 68 9 -9 18 -36 21\n-60z\"/>\n<path d=\"M2062 3286 c-100 -101 -108 -121 -67 -161 40 -41 60 -33 161 67 102\n99 114 128 74 168 -40 40 -69 28 -168 -74z\"/>\n<path d=\"M3120 3201 c-95 -30 -191 -120 -225 -212 -19 -50 -20 -79 -20 -424 0\n-345 1 -374 20 -424 25 -68 101 -153 169 -189 l51 -27 680 0 680 0 53 28 c70\n37 128 97 161 166 l26 56 0 390 0 390 -26 56 c-33 69 -91 129 -161 166 l-53\n28 -665 2 c-366 1 -676 -2 -690 -6z m1355 -154 c21 -12 53 -42 70 -65 l30 -44\n3 -346 c2 -243 0 -359 -8 -387 -16 -55 -53 -101 -100 -125 -38 -19 -60 -20\n-673 -20 l-634 0 -44 23 c-29 16 -54 40 -74 72 l-30 48 0 362 0 362 30 48 c20\n32 45 56 74 72 l44 23 636 0 636 0 40 -23z\"/>\n<path d=\"M3559 2921 l-24 -19 0 -337 0 -337 25 -20 c16 -13 33 -18 50 -15 32\n7 561 312 578 334 19 26 14 62 -10 84 -36 31 -559 329 -578 329 -10 0 -28 -9\n-41 -19z m270 -264 c79 -46 143 -87 142 -93 0 -9 -278 -174 -293 -174 -5 0 -8\n79 -8 175 0 96 3 175 8 175 4 0 72 -37 151 -83z\"/>\n<path d=\"M2038 2943 c-35 -42 -27 -91 19 -112 33 -15 423 -15 457 0 13 7 30\n25 37 41 10 25 9 33 -8 56 l-20 27 -235 3 c-214 2 -236 1 -250 -15z\"/>\n<path d=\"M1991 2634 c-12 -15 -21 -36 -21 -47 0 -28 179 -207 207 -207 35 0\n73 38 73 73 0 25 -15 46 -88 119 -73 73 -94 88 -119 88 -22 0 -38 -8 -52 -26z\"/>\n<path d=\"M912 1334 c-22 -15 -30 -66 -14 -90 22 -33 48 -34 822 -34 l771 0 24\n25 c31 30 32 65 2 93 l-23 22 -780 0 c-689 0 -782 -2 -802 -16z\"/>\n<path d=\"M2780 1330 c-29 -29 -26 -74 6 -99 21 -17 41 -21 96 -21 97 0 128 18\n128 76 0 51 -24 64 -123 64 -74 0 -90 -3 -107 -20z\"/>\n</g>\n</svg>\n                <h3>Healthcare Paid Media Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/influencer.svg\"  alt=\"Healthcare Influencer Marketing\">\n                <h3>Healthcare Influencer Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/reputation-management.svg\"  alt=\"Healthcare Online Reputation Management\">\n                <h3>Healthcare Online Reputation Management</h3>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://health.ideascloud.in/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Upliftment Of Your Brand</h2>		\n		<p>Bring to us what troubles you and let us find the solution for you.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://health.ideascloud.in/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://health.ideascloud.in/hello-world/\">\n        </a>\n                    <a href=\"https://health.ideascloud.in/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://health.ideascloud.in/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://health.ideascloud.in/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-18 16:59:56','2023-07-18 11:29:56','',156,'https://health.ideascloud.in/?p=259',0,'revision','',0),(261,1,'2023-07-18 17:05:27','2023-07-18 11:35:27','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Healthcare Digital Marketing Services, A Brand Requires</h2>		\n                <h3>Healthcare Website Design</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M805 5109 c-356 -82 -641 -342 -748 -684 -113 -360 -12 -757 259\n-1015 90 -85 155 -131 267 -186 58 -29 76 -42 71 -54 -3 -8 -16 -56 -29 -107\n-43 -165 -58 -295 -58 -493 0 -205 15 -325 62 -505 16 -60 28 -111 28 -111 -1\n-1 -40 -20 -87 -44 -270 -134 -463 -378 -537 -678 -12 -47 -17 -112 -17 -217\n-1 -126 3 -164 23 -240 32 -124 73 -212 106 -227 34 -15 75 -1 95 34 13 25 13\n32 -4 75 -100 258 -100 489 3 708 115 246 308 407 572 476 164 43 384 25 543\n-46 192 -85 358 -251 442 -442 65 -147 87 -375 50 -526 -63 -264 -233 -473\n-478 -586 -129 -60 -201 -75 -358 -75 -110 0 -150 4 -215 22 -108 31 -226 90\n-309 157 -79 62 -120 71 -156 33 -44 -48 -22 -89 95 -176 178 -132 416 -202\n644 -189 362 21 678 231 841 557 24 47 43 86 44 87 0 1 51 -12 112 -27 311\n-80 686 -82 991 -5 53 14 104 27 113 30 14 4 23 -7 41 -52 74 -184 273 -389\n474 -490 559 -282 1255 41 1411 655 33 130 35 357 3 482 -74 290 -255 519\n-520 655 -52 26 -95 49 -96 49 -1 1 8 41 22 88 91 334 90 744 -5 1072 -11 38\n-19 70 -17 71 1 1 40 21 86 44 263 130 454 366 527 650 35 135 35 357 0 493\n-85 335 -338 602 -676 714 -82 28 -91 29 -295 29 -204 0 -212 -1 -295 -29\n-211 -71 -374 -186 -508 -360 -38 -49 -117 -188 -133 -233 -3 -8 -37 -2 -114\n18 -180 47 -300 62 -505 62 -198 0 -328 -15 -493 -58 -51 -13 -99 -26 -107\n-29 -11 -5 -25 15 -55 76 -128 265 -369 461 -659 537 -66 17 -108 21 -245 20\n-91 -1 -184 -5 -206 -10z m415 -154 c258 -68 478 -257 579 -500 48 -114 64\n-196 64 -325 0 -187 -48 -342 -153 -494 -55 -80 -63 -121 -30 -151 26 -24 74\n-23 101 1 35 31 99 131 140 218 76 163 109 350 90 518 -6 54 -11 102 -11 107\n0 23 244 75 429 92 201 17 456 -8 658 -67 l55 -16 -6 -39 c-54 -335 59 -673\n299 -898 226 -211 522 -306 836 -268 l66 8 22 -80 c86 -318 86 -659 -1 -984\nl-20 -78 -72 8 c-379 42 -727 -104 -945 -397 -104 -139 -161 -282 -188 -465\n-14 -93 -15 -128 -5 -224 6 -63 10 -116 8 -118 -9 -9 -208 -54 -302 -68 -139\n-21 -388 -21 -530 0 -95 14 -291 59 -301 69 -2 2 1 51 7 108 32 296 -74 594\n-289 809 -223 222 -520 323 -848 286 l-71 -8 -16 55 c-59 201 -84 456 -67 658\n17 193 69 428 94 428 7 0 53 -5 102 -11 167 -19 383 20 535 96 93 47 115 92\n68 142 -29 31 -48 29 -153 -16 -153 -66 -302 -89 -450 -71 -175 21 -346 100\n-475 218 -250 228 -341 579 -234 901 43 129 98 215 209 326 137 137 278 213\n457 244 75 14 271 6 348 -14z m3123 -4 c191 -50 374 -180 486 -344 47 -68 106\n-200 127 -282 26 -103 24 -303 -4 -410 -137 -512 -699 -782 -1178 -565 -231\n104 -409 316 -476 565 -28 108 -30 308 -3 410 69 267 262 492 507 592 160 65\n373 79 541 34z m-30 -3106 c299 -61 555 -311 639 -620 33 -123 30 -319 -6\n-438 -131 -434 -544 -693 -977 -611 -318 60 -568 290 -665 611 -23 77 -27 106\n-27 223 0 159 20 248 82 375 177 359 555 541 954 460z\"/>\n<path d=\"M1082 4564 c-64 -24 -137 -102 -159 -170 -17 -55 -18 -56 -50 -51\n-59 10 -137 58 -211 129 -63 62 -75 69 -100 64 -59 -14 -91 -96 -99 -252 -8\n-155 26 -252 124 -355 l54 -56 -32 -7 c-18 -3 -63 -9 -101 -13 -77 -7 -98 -24\n-98 -79 0 -38 19 -56 95 -90 98 -43 198 -64 304 -64 192 0 329 56 456 184 122\n123 176 239 195 423 8 70 15 100 34 128 36 53 67 142 60 171 -8 29 -40 54 -71\n54 -13 0 -45 -12 -71 -27 l-48 -27 -50 24 c-62 31 -169 37 -232 14z m186 -164\nc45 -32 47 -41 43 -145 -9 -225 -149 -407 -360 -469 -67 -20 -177 -22 -147 -3\n45 27 66 56 66 90 0 39 -13 52 -88 92 -106 57 -163 147 -170 269 l-5 79 34\n-25 c53 -40 114 -68 196 -89 164 -41 223 -16 223 97 0 118 112 174 208 104z\"/>\n<path d=\"M3067 3330 c-18 -14 -27 -32 -29 -57 -3 -36 -5 -38 -114 -94 -193\n-98 -483 -198 -515 -178 -8 5 -104 9 -214 9 -225 0 -250 -6 -292 -69 -22 -33\n-23 -41 -23 -275 0 -223 2 -243 20 -274 29 -47 75 -72 137 -72 28 0 54 -3 56\n-7 3 -5 10 -120 17 -258 10 -210 14 -254 29 -275 25 -35 82 -39 112 -9 24 24\n24 15 2 425 l-6 121 104 5 c89 5 115 2 184 -18 100 -29 116 -30 143 -1 27 29\n29 78 4 101 -18 16 -95 44 -179 66 l-43 11 0 183 0 182 97 28 c131 37 270 90\n375 142 48 24 92 44 98 44 7 0 10 -135 10 -399 l0 -400 -64 30 c-71 33 -106\n32 -131 -4 -38 -54 -12 -92 105 -153 85 -45 90 -49 90 -80 0 -64 71 -96 121\n-55 l24 19 3 624 c1 342 0 633 -3 646 -8 32 -41 62 -69 62 -13 0 -35 -9 -49\n-20z m-757 -665 l0 -195 -140 0 -140 0 0 195 0 195 140 0 140 0 0 -195z\"/>\n<path d=\"M4189 4696 c-78 -21 -144 -80 -180 -160 -17 -40 -23 -75 -27 -183\nl-5 -133 -59 0 c-53 0 -63 -3 -90 -30 -24 -25 -29 -36 -24 -58 11 -46 41 -62\n111 -62 l64 0 3 -239 c3 -218 5 -241 22 -260 24 -27 86 -29 109 -3 14 16 17\n52 19 258 l3 239 77 5 c88 6 109 19 110 70 1 25 -6 40 -26 57 -23 19 -38 23\n-98 23 l-70 0 4 125 c3 105 7 129 24 152 32 44 80 63 157 63 38 0 77 5 88 11\n48 25 44 105 -7 128 -32 14 -146 13 -205 -3z\"/>\n<path d=\"M3715 1526 c-38 -16 -102 -87 -112 -123 -5 -16 -8 -194 -8 -398 l0\n-370 25 -45 c28 -49 73 -84 129 -100 48 -13 704 -13 752 0 56 16 101 51 129\n100 l25 45 0 380 c0 416 1 406 -62 469 -54 55 -60 56 -470 56 -289 -1 -385 -4\n-408 -14z m780 -160 c14 -20 15 -69 13 -366 -3 -325 -4 -342 -22 -356 -29 -21\n-693 -21 -722 0 -18 14 -19 31 -22 356 -2 297 -1 346 13 366 l15 24 355 0 355\n0 15 -24z\"/>\n<path d=\"M4046 1225 c-125 -44 -181 -195 -118 -316 83 -160 311 -160 394 0 96\n184 -80 386 -276 316z m129 -160 c70 -69 -30 -170 -102 -103 -14 13 -23 33\n-23 50 0 36 40 78 75 78 14 0 37 -11 50 -25z\"/>\n<path d=\"M791 1406 c-49 -27 -50 -39 -51 -379 0 -338 3 -362 49 -387 51 -27\n82 -14 361 146 162 93 278 166 288 181 20 32 21 83 0 114 -23 35 -557 339\n-594 339 -16 -1 -40 -7 -53 -14z m296 -282 c93 -53 169 -98 171 -99 1 -1 -71\n-44 -160 -95 -90 -52 -173 -100 -185 -108 l-23 -14 0 212 c0 183 2 211 15 206\n8 -3 90 -49 182 -102z\"/>\n</g>\n</svg>\n                <h3>Healthcare Social Media Management</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M2567 4629 c-286 -42 -582 -177 -796 -363 l-65 -56 -362 0 c-361 0\n-363 0 -384 -22 -39 -42 -19 -101 41 -118 19 -6 154 -10 301 -10 l267 0 -47\n-64 c-26 -35 -51 -71 -57 -80 -9 -15 -66 -16 -662 -10 l-653 7 0 79 0 78 275\n0 c269 0 275 0 295 22 41 44 13 111 -52 123 -18 4 -154 5 -303 3 -302 -3 -318\n-7 -349 -72 -15 -31 -16 -161 -16 -1456 0 -1295 1 -1425 16 -1456 31 -66 16\n-64 617 -64 532 0 544 0 562 20 25 28 23 76 -4 103 -22 22 -22 22 -531 25\nl-510 3 0 1221 0 1220 607 -7 c335 -4 609 -9 611 -10 2 -2 -4 -18 -13 -35 -9\n-18 -34 -85 -55 -149 l-38 -116 -384 -2 c-270 -2 -390 -6 -405 -15 -13 -6 -27\n-27 -33 -47 -13 -46 -13 -585 0 -630 17 -62 7 -60 436 -61 l390 0 29 -92 c16\n-51 31 -99 33 -105 3 -10 -87 -13 -427 -13 -430 0 -430 0 -451 -22 -37 -40\n-21 -97 34 -118 17 -6 190 -10 476 -10 l449 0 17 -33 c9 -17 34 -58 55 -89 22\n-31 39 -62 39 -67 0 -8 -163 -11 -525 -11 l-524 0 -21 -22 c-37 -40 -21 -97\n34 -118 18 -6 229 -10 603 -10 l575 0 75 -70 c93 -87 255 -196 376 -254 429\n-205 921 -206 1350 -4 l107 51 93 -90 c106 -104 138 -118 210 -89 l42 16 115\n-115 115 -116 -1343 3 -1344 3 -19 -24 c-23 -28 -24 -69 -3 -99 15 -21 21 -22\n193 -22 98 0 180 -2 183 -5 2 -3 -9 -56 -26 -119 l-30 -113 -101 -6 c-56 -4\n-120 -13 -143 -21 -95 -34 -174 -113 -207 -207 -22 -60 -20 -181 3 -202 15\n-13 130 -16 1049 -19 980 -3 1032 -2 1051 15 26 24 33 62 22 136 -11 80 -41\n140 -96 195 -71 72 -120 90 -253 96 l-114 5 -32 117 c-18 65 -30 120 -27 123\n3 3 316 2 696 -1 l691 -7 185 -181 c107 -106 202 -190 225 -201 60 -29 180\n-32 237 -7 144 63 212 222 157 367 -20 53 -42 80 -201 241 l-178 181 0 1277\nc0 1162 -1 1281 -16 1312 -30 64 -33 64 -447 64 l-375 0 -73 62 c-220 184\n-487 306 -774 353 -98 16 -369 18 -468 4z m458 -154 c208 -34 427 -124 598\n-245 286 -205 494 -528 563 -877 13 -66 22 -88 42 -103 31 -25 63 -25 93 -1\n20 16 24 27 22 68 -3 68 -47 230 -92 340 l-39 93 179 0 179 0 0 -1022 0 -1023\n-124 124 -125 124 15 28 c18 36 18 92 0 127 -8 15 -50 62 -94 106 l-80 78 44\n92 c23 50 59 139 78 197 34 101 76 307 76 372 0 42 -35 77 -75 77 -51 0 -66\n-26 -85 -152 -51 -335 -188 -599 -429 -830 -229 -220 -517 -355 -830 -389\n-647 -70 -1271 325 -1490 944 -291 825 241 1726 1104 1871 110 19 359 19 470\n1z m1545 -495 l0 -80 -221 2 -221 3 -54 78 -55 77 276 0 275 0 0 -80z m-3345\n-887 c0 -109 3 -210 8 -225 l7 -28 -325 0 -325 0 0 225 0 225 318 0 317 0 0\n-197z m2918 -991 l57 -57 -190 -190 -190 -190 -60 60 -60 60 93 76 c87 72 188\n176 251 262 16 20 31 37 35 37 4 0 32 -26 64 -58z m439 -629 c201 -203 371\n-378 377 -390 26 -51 1 -131 -51 -163 -21 -13 -51 -20 -83 -20 l-49 0 -378\n377 -378 378 92 92 c51 51 95 93 98 93 3 0 170 -165 372 -367z m-1811 -401\nc15 -51 30 -104 33 -117 l6 -25 -450 0 c-425 0 -451 1 -446 18 3 9 17 60 31\n112 15 52 29 98 31 102 3 5 177 7 387 6 l382 -3 26 -93z m406 -315 c44 -23\n103 -94 103 -124 0 -7 -1830 -5 -1838 2 -2 2 3 16 12 33 19 37 79 90 109 96\n12 3 31 7 42 10 11 3 363 3 782 1 646 -3 766 -6 790 -18z\"/>\n<path d=\"M2685 4339 c-292 -24 -555 -143 -766 -346 -197 -190 -319 -408 -376\n-675 -25 -116 -25 -371 0 -488 64 -299 224 -566 445 -742 49 -39 82 -58 101\n-58 37 0 71 38 71 78 0 27 -12 41 -85 103 -184 154 -307 352 -372 596 -23 88\n-26 116 -26 268 0 151 3 181 25 266 36 132 78 229 147 336 230 355 621 547\n1042 512 518 -44 942 -447 1014 -964 12 -85 7 -276 -10 -363 -43 -226 -165\n-446 -335 -606 -290 -273 -694 -370 -1083 -260 -80 22 -90 23 -116 10 -47 -25\n-55 -70 -18 -110 16 -19 48 -32 114 -50 445 -117 890 -2 1219 316 194 188 319\n421 369 688 21 111 21 328 0 445 -69 390 -324 733 -678 911 -212 107 -444 152\n-682 133z\"/>\n<path d=\"M2025 3407 c-57 -19 -91 -44 -116 -84 -30 -49 -40 -101 -28 -149 18\n-71 63 -105 205 -159 65 -24 114 -58 114 -77 0 -5 -11 -20 -25 -33 -44 -45\n-134 -31 -209 32 -49 41 -116 10 -116 -55 0 -76 130 -152 258 -152 83 0 134\n22 184 78 48 53 65 111 49 171 -23 86 -70 125 -218 182 -104 40 -113 50 -80\n83 34 34 68 33 146 -5 56 -27 66 -29 92 -18 54 22 64 70 24 117 -52 62 -195\n97 -280 69z\"/>\n<path d=\"M2580 3413 c-51 -20 -50 -15 -50 -338 l0 -302 23 -21 c22 -20 33 -22\n163 -22 134 0 142 1 162 23 31 33 29 80 -4 106 -22 17 -41 21 -110 21 l-84 0\n0 60 0 60 79 0 c88 0 115 14 127 62 5 22 0 33 -24 58 -29 28 -35 30 -106 30\nl-76 0 0 60 0 60 90 0 c77 0 93 3 110 20 25 25 26 71 1 101 -18 23 -26 24\n-153 26 -73 1 -140 0 -148 -4z\"/>\n<path d=\"M3329 3406 c-102 -27 -181 -95 -228 -196 -22 -46 -26 -69 -26 -140 0\n-72 4 -93 27 -140 35 -72 99 -136 168 -169 47 -22 68 -26 150 -26 89 0 99 2\n158 34 67 36 114 86 153 161 33 63 35 212 3 281 -44 95 -131 168 -231 194 -68\n18 -112 18 -174 1z m143 -146 c155 -44 187 -257 52 -350 -66 -45 -172 -39\n-231 13 -71 62 -91 153 -52 234 43 89 135 129 231 103z\"/>\n<path d=\"M450 1758 c-41 -44 -13 -111 52 -123 18 -3 180 -5 359 -3 305 3 328\n4 348 22 27 25 29 86 3 109 -17 15 -58 17 -380 17 -359 0 -361 0 -382 -22z\"/>\n</g>\n</svg>\n                <h3>Healthcare Search Engine Optimization</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M3620 4984 c-241 -52 -449 -222 -549 -449 -26 -60 -61 -197 -61 -242\nl0 -33 -1235 0 c-1222 0 -1235 0 -1255 -20 -19 -19 -20 -33 -20 -509 l0 -489\n-119 -4 c-109 -4 -124 -7 -184 -36 -76 -38 -129 -92 -166 -171 -22 -47 -26\n-69 -26 -141 1 -71 5 -94 28 -141 50 -104 158 -183 267 -196 l49 -6 3 -239 c3\n-238 3 -240 27 -259 16 -13 39 -19 72 -19 l49 0 0 -462 0 -463 24 -50 c29 -60\n76 -107 136 -134 44 -20 63 -21 773 -21 l727 0 0 -165 0 -165 -104 0 c-187 0\n-260 -27 -313 -117 -26 -44 -28 -58 -32 -166 -3 -112 -2 -120 20 -143 l22 -24\n1058 0 1058 0 21 28 c20 25 22 36 18 142 -3 105 -6 119 -31 163 -53 90 -126\n117 -313 117 l-104 0 0 165 0 165 738 2 c697 3 739 4 772 22 49 26 98 74 123\n121 l22 40 3 1564 2 1564 -22 24 c-21 23 -22 23 -285 23 l-263 0 0 29 c0 16\n-7 62 -15 102 -63 296 -300 532 -597 593 -93 19 -230 19 -318 0z m353 -153\nc213 -75 373 -247 422 -452 68 -289 -74 -588 -341 -718 -168 -82 -380 -82\n-548 0 -219 107 -356 326 -356 569 0 288 191 534 473 611 95 25 264 21 350\n-10z m-940 -789 c59 -265 286 -491 562 -562 107 -27 264 -27 371 0 260 67 463\n255 548 512 14 42 26 88 26 102 l0 26 220 0 220 0 0 -1225 0 -1225 -2170 0\n-2170 0 0 180 0 180 50 0 c37 0 55 5 70 20 19 19 20 33 20 233 0 118 2 216 5\n219 3 3 123 -46 265 -110 l260 -115 0 -66 c0 -111 53 -185 154 -212 94 -26\n210 45 234 143 7 28 12 128 12 251 l0 203 51 24 c179 80 236 315 112 459 -41\n48 -117 101 -144 101 -16 0 -18 20 -21 233 -3 219 -4 234 -26 274 -58 110\n-212 138 -303 56 -55 -50 -62 -66 -69 -157 l-5 -78 -300 -134 c-181 -81 -313\n-134 -332 -134 l-33 0 0 440 0 440 1188 0 1187 0 18 -78z m-1479 -414 c14 -20\n16 -106 16 -736 l0 -713 -25 -24 c-28 -29 -42 -31 -73 -9 l-22 15 0 729 c0\n649 2 730 16 744 23 24 70 20 88 -6z m-244 -733 c0 -309 -3 -455 -10 -455 -13\n0 -490 210 -508 223 -9 8 -12 62 -10 235 l3 225 250 113 c138 61 256 112 263\n113 9 1 12 -96 12 -454z m-670 -1 l0 -205 -183 3 c-184 3 -184 3 -225 32 -50\n34 -92 112 -92 170 1 81 60 164 136 191 27 10 90 14 202 15 l162 0 0 -206z\nm1141 73 c37 -67 11 -174 -52 -207 -18 -10 -19 -6 -19 135 l0 146 24 -18 c14\n-10 34 -35 47 -56z m-1141 -607 l0 -190 -75 0 -75 0 0 183 c0 101 3 187 7 190\n3 4 37 7 75 7 l68 0 0 -190z m4340 -1026 c0 -216 -6 -246 -59 -277 -27 -16\n-167 -17 -2111 -17 -1909 0 -2084 1 -2110 16 -56 33 -60 53 -60 273 l0 201\n2170 0 2170 0 0 -196z m-1660 -599 l0 -165 -510 0 -510 0 0 165 0 165 510 0\n510 0 0 -165z m395 -320 c40 -16 55 -46 55 -111 l0 -44 -960 0 -960 0 0 51 c0\n62 12 87 53 104 49 22 1762 22 1812 0z\"/>\n<path d=\"M3730 4758 c-13 -14 -20 -36 -20 -62 -1 -39 -4 -43 -53 -71 -168 -96\n-168 -334 0 -430 l52 -30 0 -100 0 -100 -19 24 c-11 13 -20 36 -20 53 0 33\n-39 78 -68 78 -11 0 -32 -10 -47 -22 -25 -20 -27 -25 -22 -73 9 -92 66 -172\n145 -204 29 -12 32 -17 32 -57 0 -53 26 -84 70 -84 44 0 70 31 70 84 0 39 3\n45 28 54 46 16 103 73 128 127 57 121 6 268 -111 325 l-45 22 0 101 1 102 19\n-24 c11 -13 20 -36 20 -53 0 -35 40 -78 73 -78 13 0 33 10 45 23 61 65 -15\n230 -126 276 -29 12 -32 17 -32 57 0 76 -72 113 -120 62z m-20 -350 c0 -78 -1\n-81 -17 -65 -22 22 -24 106 -4 130 7 10 15 17 17 17 2 0 4 -37 4 -82z m177\n-350 c4 -34 1 -49 -16 -68 l-20 -25 -1 85 c0 77 1 83 16 68 9 -9 18 -36 21\n-60z\"/>\n<path d=\"M2062 3286 c-100 -101 -108 -121 -67 -161 40 -41 60 -33 161 67 102\n99 114 128 74 168 -40 40 -69 28 -168 -74z\"/>\n<path d=\"M3120 3201 c-95 -30 -191 -120 -225 -212 -19 -50 -20 -79 -20 -424 0\n-345 1 -374 20 -424 25 -68 101 -153 169 -189 l51 -27 680 0 680 0 53 28 c70\n37 128 97 161 166 l26 56 0 390 0 390 -26 56 c-33 69 -91 129 -161 166 l-53\n28 -665 2 c-366 1 -676 -2 -690 -6z m1355 -154 c21 -12 53 -42 70 -65 l30 -44\n3 -346 c2 -243 0 -359 -8 -387 -16 -55 -53 -101 -100 -125 -38 -19 -60 -20\n-673 -20 l-634 0 -44 23 c-29 16 -54 40 -74 72 l-30 48 0 362 0 362 30 48 c20\n32 45 56 74 72 l44 23 636 0 636 0 40 -23z\"/>\n<path d=\"M3559 2921 l-24 -19 0 -337 0 -337 25 -20 c16 -13 33 -18 50 -15 32\n7 561 312 578 334 19 26 14 62 -10 84 -36 31 -559 329 -578 329 -10 0 -28 -9\n-41 -19z m270 -264 c79 -46 143 -87 142 -93 0 -9 -278 -174 -293 -174 -5 0 -8\n79 -8 175 0 96 3 175 8 175 4 0 72 -37 151 -83z\"/>\n<path d=\"M2038 2943 c-35 -42 -27 -91 19 -112 33 -15 423 -15 457 0 13 7 30\n25 37 41 10 25 9 33 -8 56 l-20 27 -235 3 c-214 2 -236 1 -250 -15z\"/>\n<path d=\"M1991 2634 c-12 -15 -21 -36 -21 -47 0 -28 179 -207 207 -207 35 0\n73 38 73 73 0 25 -15 46 -88 119 -73 73 -94 88 -119 88 -22 0 -38 -8 -52 -26z\"/>\n<path d=\"M912 1334 c-22 -15 -30 -66 -14 -90 22 -33 48 -34 822 -34 l771 0 24\n25 c31 30 32 65 2 93 l-23 22 -780 0 c-689 0 -782 -2 -802 -16z\"/>\n<path d=\"M2780 1330 c-29 -29 -26 -74 6 -99 21 -17 41 -21 96 -21 97 0 128 18\n128 76 0 51 -24 64 -123 64 -74 0 -90 -3 -107 -20z\"/>\n</g>\n</svg>\n                <h3>Healthcare Paid Media Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/influencer.svg\"  alt=\"Healthcare Influencer Marketing\">\n                <h3>Healthcare Influencer Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/reputation-management.svg\"  alt=\"Healthcare Online Reputation Management\">\n                <h3>Healthcare Online Reputation Management</h3>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://health.ideascloud.in/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Upliftment Of Your Brand</h2>		\n		<p>Bring to us what troubles you and let us find the solution for you.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://health.ideascloud.in/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://health.ideascloud.in/hello-world/\">\n        </a>\n                    <a href=\"https://health.ideascloud.in/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://health.ideascloud.in/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://health.ideascloud.in/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-18 17:05:27','2023-07-18 11:35:27','',156,'https://health.ideascloud.in/?p=261',0,'revision','',0),(262,1,'2023-07-18 17:05:27','2023-07-18 11:35:27','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Healthcare Digital Marketing Services, A Brand Requires</h2>		\n                <h3>Healthcare Website Design</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M805 5109 c-356 -82 -641 -342 -748 -684 -113 -360 -12 -757 259\n-1015 90 -85 155 -131 267 -186 58 -29 76 -42 71 -54 -3 -8 -16 -56 -29 -107\n-43 -165 -58 -295 -58 -493 0 -205 15 -325 62 -505 16 -60 28 -111 28 -111 -1\n-1 -40 -20 -87 -44 -270 -134 -463 -378 -537 -678 -12 -47 -17 -112 -17 -217\n-1 -126 3 -164 23 -240 32 -124 73 -212 106 -227 34 -15 75 -1 95 34 13 25 13\n32 -4 75 -100 258 -100 489 3 708 115 246 308 407 572 476 164 43 384 25 543\n-46 192 -85 358 -251 442 -442 65 -147 87 -375 50 -526 -63 -264 -233 -473\n-478 -586 -129 -60 -201 -75 -358 -75 -110 0 -150 4 -215 22 -108 31 -226 90\n-309 157 -79 62 -120 71 -156 33 -44 -48 -22 -89 95 -176 178 -132 416 -202\n644 -189 362 21 678 231 841 557 24 47 43 86 44 87 0 1 51 -12 112 -27 311\n-80 686 -82 991 -5 53 14 104 27 113 30 14 4 23 -7 41 -52 74 -184 273 -389\n474 -490 559 -282 1255 41 1411 655 33 130 35 357 3 482 -74 290 -255 519\n-520 655 -52 26 -95 49 -96 49 -1 1 8 41 22 88 91 334 90 744 -5 1072 -11 38\n-19 70 -17 71 1 1 40 21 86 44 263 130 454 366 527 650 35 135 35 357 0 493\n-85 335 -338 602 -676 714 -82 28 -91 29 -295 29 -204 0 -212 -1 -295 -29\n-211 -71 -374 -186 -508 -360 -38 -49 -117 -188 -133 -233 -3 -8 -37 -2 -114\n18 -180 47 -300 62 -505 62 -198 0 -328 -15 -493 -58 -51 -13 -99 -26 -107\n-29 -11 -5 -25 15 -55 76 -128 265 -369 461 -659 537 -66 17 -108 21 -245 20\n-91 -1 -184 -5 -206 -10z m415 -154 c258 -68 478 -257 579 -500 48 -114 64\n-196 64 -325 0 -187 -48 -342 -153 -494 -55 -80 -63 -121 -30 -151 26 -24 74\n-23 101 1 35 31 99 131 140 218 76 163 109 350 90 518 -6 54 -11 102 -11 107\n0 23 244 75 429 92 201 17 456 -8 658 -67 l55 -16 -6 -39 c-54 -335 59 -673\n299 -898 226 -211 522 -306 836 -268 l66 8 22 -80 c86 -318 86 -659 -1 -984\nl-20 -78 -72 8 c-379 42 -727 -104 -945 -397 -104 -139 -161 -282 -188 -465\n-14 -93 -15 -128 -5 -224 6 -63 10 -116 8 -118 -9 -9 -208 -54 -302 -68 -139\n-21 -388 -21 -530 0 -95 14 -291 59 -301 69 -2 2 1 51 7 108 32 296 -74 594\n-289 809 -223 222 -520 323 -848 286 l-71 -8 -16 55 c-59 201 -84 456 -67 658\n17 193 69 428 94 428 7 0 53 -5 102 -11 167 -19 383 20 535 96 93 47 115 92\n68 142 -29 31 -48 29 -153 -16 -153 -66 -302 -89 -450 -71 -175 21 -346 100\n-475 218 -250 228 -341 579 -234 901 43 129 98 215 209 326 137 137 278 213\n457 244 75 14 271 6 348 -14z m3123 -4 c191 -50 374 -180 486 -344 47 -68 106\n-200 127 -282 26 -103 24 -303 -4 -410 -137 -512 -699 -782 -1178 -565 -231\n104 -409 316 -476 565 -28 108 -30 308 -3 410 69 267 262 492 507 592 160 65\n373 79 541 34z m-30 -3106 c299 -61 555 -311 639 -620 33 -123 30 -319 -6\n-438 -131 -434 -544 -693 -977 -611 -318 60 -568 290 -665 611 -23 77 -27 106\n-27 223 0 159 20 248 82 375 177 359 555 541 954 460z\"/>\n<path d=\"M1082 4564 c-64 -24 -137 -102 -159 -170 -17 -55 -18 -56 -50 -51\n-59 10 -137 58 -211 129 -63 62 -75 69 -100 64 -59 -14 -91 -96 -99 -252 -8\n-155 26 -252 124 -355 l54 -56 -32 -7 c-18 -3 -63 -9 -101 -13 -77 -7 -98 -24\n-98 -79 0 -38 19 -56 95 -90 98 -43 198 -64 304 -64 192 0 329 56 456 184 122\n123 176 239 195 423 8 70 15 100 34 128 36 53 67 142 60 171 -8 29 -40 54 -71\n54 -13 0 -45 -12 -71 -27 l-48 -27 -50 24 c-62 31 -169 37 -232 14z m186 -164\nc45 -32 47 -41 43 -145 -9 -225 -149 -407 -360 -469 -67 -20 -177 -22 -147 -3\n45 27 66 56 66 90 0 39 -13 52 -88 92 -106 57 -163 147 -170 269 l-5 79 34\n-25 c53 -40 114 -68 196 -89 164 -41 223 -16 223 97 0 118 112 174 208 104z\"/>\n<path d=\"M3067 3330 c-18 -14 -27 -32 -29 -57 -3 -36 -5 -38 -114 -94 -193\n-98 -483 -198 -515 -178 -8 5 -104 9 -214 9 -225 0 -250 -6 -292 -69 -22 -33\n-23 -41 -23 -275 0 -223 2 -243 20 -274 29 -47 75 -72 137 -72 28 0 54 -3 56\n-7 3 -5 10 -120 17 -258 10 -210 14 -254 29 -275 25 -35 82 -39 112 -9 24 24\n24 15 2 425 l-6 121 104 5 c89 5 115 2 184 -18 100 -29 116 -30 143 -1 27 29\n29 78 4 101 -18 16 -95 44 -179 66 l-43 11 0 183 0 182 97 28 c131 37 270 90\n375 142 48 24 92 44 98 44 7 0 10 -135 10 -399 l0 -400 -64 30 c-71 33 -106\n32 -131 -4 -38 -54 -12 -92 105 -153 85 -45 90 -49 90 -80 0 -64 71 -96 121\n-55 l24 19 3 624 c1 342 0 633 -3 646 -8 32 -41 62 -69 62 -13 0 -35 -9 -49\n-20z m-757 -665 l0 -195 -140 0 -140 0 0 195 0 195 140 0 140 0 0 -195z\"/>\n<path d=\"M4189 4696 c-78 -21 -144 -80 -180 -160 -17 -40 -23 -75 -27 -183\nl-5 -133 -59 0 c-53 0 -63 -3 -90 -30 -24 -25 -29 -36 -24 -58 11 -46 41 -62\n111 -62 l64 0 3 -239 c3 -218 5 -241 22 -260 24 -27 86 -29 109 -3 14 16 17\n52 19 258 l3 239 77 5 c88 6 109 19 110 70 1 25 -6 40 -26 57 -23 19 -38 23\n-98 23 l-70 0 4 125 c3 105 7 129 24 152 32 44 80 63 157 63 38 0 77 5 88 11\n48 25 44 105 -7 128 -32 14 -146 13 -205 -3z\"/>\n<path d=\"M3715 1526 c-38 -16 -102 -87 -112 -123 -5 -16 -8 -194 -8 -398 l0\n-370 25 -45 c28 -49 73 -84 129 -100 48 -13 704 -13 752 0 56 16 101 51 129\n100 l25 45 0 380 c0 416 1 406 -62 469 -54 55 -60 56 -470 56 -289 -1 -385 -4\n-408 -14z m780 -160 c14 -20 15 -69 13 -366 -3 -325 -4 -342 -22 -356 -29 -21\n-693 -21 -722 0 -18 14 -19 31 -22 356 -2 297 -1 346 13 366 l15 24 355 0 355\n0 15 -24z\"/>\n<path d=\"M4046 1225 c-125 -44 -181 -195 -118 -316 83 -160 311 -160 394 0 96\n184 -80 386 -276 316z m129 -160 c70 -69 -30 -170 -102 -103 -14 13 -23 33\n-23 50 0 36 40 78 75 78 14 0 37 -11 50 -25z\"/>\n<path d=\"M791 1406 c-49 -27 -50 -39 -51 -379 0 -338 3 -362 49 -387 51 -27\n82 -14 361 146 162 93 278 166 288 181 20 32 21 83 0 114 -23 35 -557 339\n-594 339 -16 -1 -40 -7 -53 -14z m296 -282 c93 -53 169 -98 171 -99 1 -1 -71\n-44 -160 -95 -90 -52 -173 -100 -185 -108 l-23 -14 0 212 c0 183 2 211 15 206\n8 -3 90 -49 182 -102z\"/>\n</g>\n</svg>\n                <h3>Healthcare Social Media Management</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M2567 4629 c-286 -42 -582 -177 -796 -363 l-65 -56 -362 0 c-361 0\n-363 0 -384 -22 -39 -42 -19 -101 41 -118 19 -6 154 -10 301 -10 l267 0 -47\n-64 c-26 -35 -51 -71 -57 -80 -9 -15 -66 -16 -662 -10 l-653 7 0 79 0 78 275\n0 c269 0 275 0 295 22 41 44 13 111 -52 123 -18 4 -154 5 -303 3 -302 -3 -318\n-7 -349 -72 -15 -31 -16 -161 -16 -1456 0 -1295 1 -1425 16 -1456 31 -66 16\n-64 617 -64 532 0 544 0 562 20 25 28 23 76 -4 103 -22 22 -22 22 -531 25\nl-510 3 0 1221 0 1220 607 -7 c335 -4 609 -9 611 -10 2 -2 -4 -18 -13 -35 -9\n-18 -34 -85 -55 -149 l-38 -116 -384 -2 c-270 -2 -390 -6 -405 -15 -13 -6 -27\n-27 -33 -47 -13 -46 -13 -585 0 -630 17 -62 7 -60 436 -61 l390 0 29 -92 c16\n-51 31 -99 33 -105 3 -10 -87 -13 -427 -13 -430 0 -430 0 -451 -22 -37 -40\n-21 -97 34 -118 17 -6 190 -10 476 -10 l449 0 17 -33 c9 -17 34 -58 55 -89 22\n-31 39 -62 39 -67 0 -8 -163 -11 -525 -11 l-524 0 -21 -22 c-37 -40 -21 -97\n34 -118 18 -6 229 -10 603 -10 l575 0 75 -70 c93 -87 255 -196 376 -254 429\n-205 921 -206 1350 -4 l107 51 93 -90 c106 -104 138 -118 210 -89 l42 16 115\n-115 115 -116 -1343 3 -1344 3 -19 -24 c-23 -28 -24 -69 -3 -99 15 -21 21 -22\n193 -22 98 0 180 -2 183 -5 2 -3 -9 -56 -26 -119 l-30 -113 -101 -6 c-56 -4\n-120 -13 -143 -21 -95 -34 -174 -113 -207 -207 -22 -60 -20 -181 3 -202 15\n-13 130 -16 1049 -19 980 -3 1032 -2 1051 15 26 24 33 62 22 136 -11 80 -41\n140 -96 195 -71 72 -120 90 -253 96 l-114 5 -32 117 c-18 65 -30 120 -27 123\n3 3 316 2 696 -1 l691 -7 185 -181 c107 -106 202 -190 225 -201 60 -29 180\n-32 237 -7 144 63 212 222 157 367 -20 53 -42 80 -201 241 l-178 181 0 1277\nc0 1162 -1 1281 -16 1312 -30 64 -33 64 -447 64 l-375 0 -73 62 c-220 184\n-487 306 -774 353 -98 16 -369 18 -468 4z m458 -154 c208 -34 427 -124 598\n-245 286 -205 494 -528 563 -877 13 -66 22 -88 42 -103 31 -25 63 -25 93 -1\n20 16 24 27 22 68 -3 68 -47 230 -92 340 l-39 93 179 0 179 0 0 -1022 0 -1023\n-124 124 -125 124 15 28 c18 36 18 92 0 127 -8 15 -50 62 -94 106 l-80 78 44\n92 c23 50 59 139 78 197 34 101 76 307 76 372 0 42 -35 77 -75 77 -51 0 -66\n-26 -85 -152 -51 -335 -188 -599 -429 -830 -229 -220 -517 -355 -830 -389\n-647 -70 -1271 325 -1490 944 -291 825 241 1726 1104 1871 110 19 359 19 470\n1z m1545 -495 l0 -80 -221 2 -221 3 -54 78 -55 77 276 0 275 0 0 -80z m-3345\n-887 c0 -109 3 -210 8 -225 l7 -28 -325 0 -325 0 0 225 0 225 318 0 317 0 0\n-197z m2918 -991 l57 -57 -190 -190 -190 -190 -60 60 -60 60 93 76 c87 72 188\n176 251 262 16 20 31 37 35 37 4 0 32 -26 64 -58z m439 -629 c201 -203 371\n-378 377 -390 26 -51 1 -131 -51 -163 -21 -13 -51 -20 -83 -20 l-49 0 -378\n377 -378 378 92 92 c51 51 95 93 98 93 3 0 170 -165 372 -367z m-1811 -401\nc15 -51 30 -104 33 -117 l6 -25 -450 0 c-425 0 -451 1 -446 18 3 9 17 60 31\n112 15 52 29 98 31 102 3 5 177 7 387 6 l382 -3 26 -93z m406 -315 c44 -23\n103 -94 103 -124 0 -7 -1830 -5 -1838 2 -2 2 3 16 12 33 19 37 79 90 109 96\n12 3 31 7 42 10 11 3 363 3 782 1 646 -3 766 -6 790 -18z\"/>\n<path d=\"M2685 4339 c-292 -24 -555 -143 -766 -346 -197 -190 -319 -408 -376\n-675 -25 -116 -25 -371 0 -488 64 -299 224 -566 445 -742 49 -39 82 -58 101\n-58 37 0 71 38 71 78 0 27 -12 41 -85 103 -184 154 -307 352 -372 596 -23 88\n-26 116 -26 268 0 151 3 181 25 266 36 132 78 229 147 336 230 355 621 547\n1042 512 518 -44 942 -447 1014 -964 12 -85 7 -276 -10 -363 -43 -226 -165\n-446 -335 -606 -290 -273 -694 -370 -1083 -260 -80 22 -90 23 -116 10 -47 -25\n-55 -70 -18 -110 16 -19 48 -32 114 -50 445 -117 890 -2 1219 316 194 188 319\n421 369 688 21 111 21 328 0 445 -69 390 -324 733 -678 911 -212 107 -444 152\n-682 133z\"/>\n<path d=\"M2025 3407 c-57 -19 -91 -44 -116 -84 -30 -49 -40 -101 -28 -149 18\n-71 63 -105 205 -159 65 -24 114 -58 114 -77 0 -5 -11 -20 -25 -33 -44 -45\n-134 -31 -209 32 -49 41 -116 10 -116 -55 0 -76 130 -152 258 -152 83 0 134\n22 184 78 48 53 65 111 49 171 -23 86 -70 125 -218 182 -104 40 -113 50 -80\n83 34 34 68 33 146 -5 56 -27 66 -29 92 -18 54 22 64 70 24 117 -52 62 -195\n97 -280 69z\"/>\n<path d=\"M2580 3413 c-51 -20 -50 -15 -50 -338 l0 -302 23 -21 c22 -20 33 -22\n163 -22 134 0 142 1 162 23 31 33 29 80 -4 106 -22 17 -41 21 -110 21 l-84 0\n0 60 0 60 79 0 c88 0 115 14 127 62 5 22 0 33 -24 58 -29 28 -35 30 -106 30\nl-76 0 0 60 0 60 90 0 c77 0 93 3 110 20 25 25 26 71 1 101 -18 23 -26 24\n-153 26 -73 1 -140 0 -148 -4z\"/>\n<path d=\"M3329 3406 c-102 -27 -181 -95 -228 -196 -22 -46 -26 -69 -26 -140 0\n-72 4 -93 27 -140 35 -72 99 -136 168 -169 47 -22 68 -26 150 -26 89 0 99 2\n158 34 67 36 114 86 153 161 33 63 35 212 3 281 -44 95 -131 168 -231 194 -68\n18 -112 18 -174 1z m143 -146 c155 -44 187 -257 52 -350 -66 -45 -172 -39\n-231 13 -71 62 -91 153 -52 234 43 89 135 129 231 103z\"/>\n<path d=\"M450 1758 c-41 -44 -13 -111 52 -123 18 -3 180 -5 359 -3 305 3 328\n4 348 22 27 25 29 86 3 109 -17 15 -58 17 -380 17 -359 0 -361 0 -382 -22z\"/>\n</g>\n</svg>\n                <h3>Healthcare Search Engine Optimization</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M3620 4984 c-241 -52 -449 -222 -549 -449 -26 -60 -61 -197 -61 -242\nl0 -33 -1235 0 c-1222 0 -1235 0 -1255 -20 -19 -19 -20 -33 -20 -509 l0 -489\n-119 -4 c-109 -4 -124 -7 -184 -36 -76 -38 -129 -92 -166 -171 -22 -47 -26\n-69 -26 -141 1 -71 5 -94 28 -141 50 -104 158 -183 267 -196 l49 -6 3 -239 c3\n-238 3 -240 27 -259 16 -13 39 -19 72 -19 l49 0 0 -462 0 -463 24 -50 c29 -60\n76 -107 136 -134 44 -20 63 -21 773 -21 l727 0 0 -165 0 -165 -104 0 c-187 0\n-260 -27 -313 -117 -26 -44 -28 -58 -32 -166 -3 -112 -2 -120 20 -143 l22 -24\n1058 0 1058 0 21 28 c20 25 22 36 18 142 -3 105 -6 119 -31 163 -53 90 -126\n117 -313 117 l-104 0 0 165 0 165 738 2 c697 3 739 4 772 22 49 26 98 74 123\n121 l22 40 3 1564 2 1564 -22 24 c-21 23 -22 23 -285 23 l-263 0 0 29 c0 16\n-7 62 -15 102 -63 296 -300 532 -597 593 -93 19 -230 19 -318 0z m353 -153\nc213 -75 373 -247 422 -452 68 -289 -74 -588 -341 -718 -168 -82 -380 -82\n-548 0 -219 107 -356 326 -356 569 0 288 191 534 473 611 95 25 264 21 350\n-10z m-940 -789 c59 -265 286 -491 562 -562 107 -27 264 -27 371 0 260 67 463\n255 548 512 14 42 26 88 26 102 l0 26 220 0 220 0 0 -1225 0 -1225 -2170 0\n-2170 0 0 180 0 180 50 0 c37 0 55 5 70 20 19 19 20 33 20 233 0 118 2 216 5\n219 3 3 123 -46 265 -110 l260 -115 0 -66 c0 -111 53 -185 154 -212 94 -26\n210 45 234 143 7 28 12 128 12 251 l0 203 51 24 c179 80 236 315 112 459 -41\n48 -117 101 -144 101 -16 0 -18 20 -21 233 -3 219 -4 234 -26 274 -58 110\n-212 138 -303 56 -55 -50 -62 -66 -69 -157 l-5 -78 -300 -134 c-181 -81 -313\n-134 -332 -134 l-33 0 0 440 0 440 1188 0 1187 0 18 -78z m-1479 -414 c14 -20\n16 -106 16 -736 l0 -713 -25 -24 c-28 -29 -42 -31 -73 -9 l-22 15 0 729 c0\n649 2 730 16 744 23 24 70 20 88 -6z m-244 -733 c0 -309 -3 -455 -10 -455 -13\n0 -490 210 -508 223 -9 8 -12 62 -10 235 l3 225 250 113 c138 61 256 112 263\n113 9 1 12 -96 12 -454z m-670 -1 l0 -205 -183 3 c-184 3 -184 3 -225 32 -50\n34 -92 112 -92 170 1 81 60 164 136 191 27 10 90 14 202 15 l162 0 0 -206z\nm1141 73 c37 -67 11 -174 -52 -207 -18 -10 -19 -6 -19 135 l0 146 24 -18 c14\n-10 34 -35 47 -56z m-1141 -607 l0 -190 -75 0 -75 0 0 183 c0 101 3 187 7 190\n3 4 37 7 75 7 l68 0 0 -190z m4340 -1026 c0 -216 -6 -246 -59 -277 -27 -16\n-167 -17 -2111 -17 -1909 0 -2084 1 -2110 16 -56 33 -60 53 -60 273 l0 201\n2170 0 2170 0 0 -196z m-1660 -599 l0 -165 -510 0 -510 0 0 165 0 165 510 0\n510 0 0 -165z m395 -320 c40 -16 55 -46 55 -111 l0 -44 -960 0 -960 0 0 51 c0\n62 12 87 53 104 49 22 1762 22 1812 0z\"/>\n<path d=\"M3730 4758 c-13 -14 -20 -36 -20 -62 -1 -39 -4 -43 -53 -71 -168 -96\n-168 -334 0 -430 l52 -30 0 -100 0 -100 -19 24 c-11 13 -20 36 -20 53 0 33\n-39 78 -68 78 -11 0 -32 -10 -47 -22 -25 -20 -27 -25 -22 -73 9 -92 66 -172\n145 -204 29 -12 32 -17 32 -57 0 -53 26 -84 70 -84 44 0 70 31 70 84 0 39 3\n45 28 54 46 16 103 73 128 127 57 121 6 268 -111 325 l-45 22 0 101 1 102 19\n-24 c11 -13 20 -36 20 -53 0 -35 40 -78 73 -78 13 0 33 10 45 23 61 65 -15\n230 -126 276 -29 12 -32 17 -32 57 0 76 -72 113 -120 62z m-20 -350 c0 -78 -1\n-81 -17 -65 -22 22 -24 106 -4 130 7 10 15 17 17 17 2 0 4 -37 4 -82z m177\n-350 c4 -34 1 -49 -16 -68 l-20 -25 -1 85 c0 77 1 83 16 68 9 -9 18 -36 21\n-60z\"/>\n<path d=\"M2062 3286 c-100 -101 -108 -121 -67 -161 40 -41 60 -33 161 67 102\n99 114 128 74 168 -40 40 -69 28 -168 -74z\"/>\n<path d=\"M3120 3201 c-95 -30 -191 -120 -225 -212 -19 -50 -20 -79 -20 -424 0\n-345 1 -374 20 -424 25 -68 101 -153 169 -189 l51 -27 680 0 680 0 53 28 c70\n37 128 97 161 166 l26 56 0 390 0 390 -26 56 c-33 69 -91 129 -161 166 l-53\n28 -665 2 c-366 1 -676 -2 -690 -6z m1355 -154 c21 -12 53 -42 70 -65 l30 -44\n3 -346 c2 -243 0 -359 -8 -387 -16 -55 -53 -101 -100 -125 -38 -19 -60 -20\n-673 -20 l-634 0 -44 23 c-29 16 -54 40 -74 72 l-30 48 0 362 0 362 30 48 c20\n32 45 56 74 72 l44 23 636 0 636 0 40 -23z\"/>\n<path d=\"M3559 2921 l-24 -19 0 -337 0 -337 25 -20 c16 -13 33 -18 50 -15 32\n7 561 312 578 334 19 26 14 62 -10 84 -36 31 -559 329 -578 329 -10 0 -28 -9\n-41 -19z m270 -264 c79 -46 143 -87 142 -93 0 -9 -278 -174 -293 -174 -5 0 -8\n79 -8 175 0 96 3 175 8 175 4 0 72 -37 151 -83z\"/>\n<path d=\"M2038 2943 c-35 -42 -27 -91 19 -112 33 -15 423 -15 457 0 13 7 30\n25 37 41 10 25 9 33 -8 56 l-20 27 -235 3 c-214 2 -236 1 -250 -15z\"/>\n<path d=\"M1991 2634 c-12 -15 -21 -36 -21 -47 0 -28 179 -207 207 -207 35 0\n73 38 73 73 0 25 -15 46 -88 119 -73 73 -94 88 -119 88 -22 0 -38 -8 -52 -26z\"/>\n<path d=\"M912 1334 c-22 -15 -30 -66 -14 -90 22 -33 48 -34 822 -34 l771 0 24\n25 c31 30 32 65 2 93 l-23 22 -780 0 c-689 0 -782 -2 -802 -16z\"/>\n<path d=\"M2780 1330 c-29 -29 -26 -74 6 -99 21 -17 41 -21 96 -21 97 0 128 18\n128 76 0 51 -24 64 -123 64 -74 0 -90 -3 -107 -20z\"/>\n</g>\n</svg>\n                <h3>Healthcare Paid Media Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/influencer.svg\"  alt=\"Healthcare Influencer Marketing\">\n                <h3>Healthcare Influencer Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/reputation-management.svg\"  alt=\"Healthcare Online Reputation Management\">\n                <h3>Healthcare Online Reputation Management</h3>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://health.ideascloud.in/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Upliftment Of Your Brand</h2>		\n		<p>Bring to us what troubles you and let us find the solution for you.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://health.ideascloud.in/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://health.ideascloud.in/hello-world/\">\n        </a>\n                    <a href=\"https://health.ideascloud.in/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://health.ideascloud.in/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://health.ideascloud.in/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-18 17:05:27','2023-07-18 11:35:27','',156,'https://health.ideascloud.in/?p=262',0,'revision','',0),(263,1,'2023-07-18 17:05:29','2023-07-18 11:35:29','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Healthcare Digital Marketing Services, A Brand Requires</h2>		\n                <h3>Healthcare Website Design</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M805 5109 c-356 -82 -641 -342 -748 -684 -113 -360 -12 -757 259\n-1015 90 -85 155 -131 267 -186 58 -29 76 -42 71 -54 -3 -8 -16 -56 -29 -107\n-43 -165 -58 -295 -58 -493 0 -205 15 -325 62 -505 16 -60 28 -111 28 -111 -1\n-1 -40 -20 -87 -44 -270 -134 -463 -378 -537 -678 -12 -47 -17 -112 -17 -217\n-1 -126 3 -164 23 -240 32 -124 73 -212 106 -227 34 -15 75 -1 95 34 13 25 13\n32 -4 75 -100 258 -100 489 3 708 115 246 308 407 572 476 164 43 384 25 543\n-46 192 -85 358 -251 442 -442 65 -147 87 -375 50 -526 -63 -264 -233 -473\n-478 -586 -129 -60 -201 -75 -358 -75 -110 0 -150 4 -215 22 -108 31 -226 90\n-309 157 -79 62 -120 71 -156 33 -44 -48 -22 -89 95 -176 178 -132 416 -202\n644 -189 362 21 678 231 841 557 24 47 43 86 44 87 0 1 51 -12 112 -27 311\n-80 686 -82 991 -5 53 14 104 27 113 30 14 4 23 -7 41 -52 74 -184 273 -389\n474 -490 559 -282 1255 41 1411 655 33 130 35 357 3 482 -74 290 -255 519\n-520 655 -52 26 -95 49 -96 49 -1 1 8 41 22 88 91 334 90 744 -5 1072 -11 38\n-19 70 -17 71 1 1 40 21 86 44 263 130 454 366 527 650 35 135 35 357 0 493\n-85 335 -338 602 -676 714 -82 28 -91 29 -295 29 -204 0 -212 -1 -295 -29\n-211 -71 -374 -186 -508 -360 -38 -49 -117 -188 -133 -233 -3 -8 -37 -2 -114\n18 -180 47 -300 62 -505 62 -198 0 -328 -15 -493 -58 -51 -13 -99 -26 -107\n-29 -11 -5 -25 15 -55 76 -128 265 -369 461 -659 537 -66 17 -108 21 -245 20\n-91 -1 -184 -5 -206 -10z m415 -154 c258 -68 478 -257 579 -500 48 -114 64\n-196 64 -325 0 -187 -48 -342 -153 -494 -55 -80 -63 -121 -30 -151 26 -24 74\n-23 101 1 35 31 99 131 140 218 76 163 109 350 90 518 -6 54 -11 102 -11 107\n0 23 244 75 429 92 201 17 456 -8 658 -67 l55 -16 -6 -39 c-54 -335 59 -673\n299 -898 226 -211 522 -306 836 -268 l66 8 22 -80 c86 -318 86 -659 -1 -984\nl-20 -78 -72 8 c-379 42 -727 -104 -945 -397 -104 -139 -161 -282 -188 -465\n-14 -93 -15 -128 -5 -224 6 -63 10 -116 8 -118 -9 -9 -208 -54 -302 -68 -139\n-21 -388 -21 -530 0 -95 14 -291 59 -301 69 -2 2 1 51 7 108 32 296 -74 594\n-289 809 -223 222 -520 323 -848 286 l-71 -8 -16 55 c-59 201 -84 456 -67 658\n17 193 69 428 94 428 7 0 53 -5 102 -11 167 -19 383 20 535 96 93 47 115 92\n68 142 -29 31 -48 29 -153 -16 -153 -66 -302 -89 -450 -71 -175 21 -346 100\n-475 218 -250 228 -341 579 -234 901 43 129 98 215 209 326 137 137 278 213\n457 244 75 14 271 6 348 -14z m3123 -4 c191 -50 374 -180 486 -344 47 -68 106\n-200 127 -282 26 -103 24 -303 -4 -410 -137 -512 -699 -782 -1178 -565 -231\n104 -409 316 -476 565 -28 108 -30 308 -3 410 69 267 262 492 507 592 160 65\n373 79 541 34z m-30 -3106 c299 -61 555 -311 639 -620 33 -123 30 -319 -6\n-438 -131 -434 -544 -693 -977 -611 -318 60 -568 290 -665 611 -23 77 -27 106\n-27 223 0 159 20 248 82 375 177 359 555 541 954 460z\"/>\n<path d=\"M1082 4564 c-64 -24 -137 -102 -159 -170 -17 -55 -18 -56 -50 -51\n-59 10 -137 58 -211 129 -63 62 -75 69 -100 64 -59 -14 -91 -96 -99 -252 -8\n-155 26 -252 124 -355 l54 -56 -32 -7 c-18 -3 -63 -9 -101 -13 -77 -7 -98 -24\n-98 -79 0 -38 19 -56 95 -90 98 -43 198 -64 304 -64 192 0 329 56 456 184 122\n123 176 239 195 423 8 70 15 100 34 128 36 53 67 142 60 171 -8 29 -40 54 -71\n54 -13 0 -45 -12 -71 -27 l-48 -27 -50 24 c-62 31 -169 37 -232 14z m186 -164\nc45 -32 47 -41 43 -145 -9 -225 -149 -407 -360 -469 -67 -20 -177 -22 -147 -3\n45 27 66 56 66 90 0 39 -13 52 -88 92 -106 57 -163 147 -170 269 l-5 79 34\n-25 c53 -40 114 -68 196 -89 164 -41 223 -16 223 97 0 118 112 174 208 104z\"/>\n<path d=\"M3067 3330 c-18 -14 -27 -32 -29 -57 -3 -36 -5 -38 -114 -94 -193\n-98 -483 -198 -515 -178 -8 5 -104 9 -214 9 -225 0 -250 -6 -292 -69 -22 -33\n-23 -41 -23 -275 0 -223 2 -243 20 -274 29 -47 75 -72 137 -72 28 0 54 -3 56\n-7 3 -5 10 -120 17 -258 10 -210 14 -254 29 -275 25 -35 82 -39 112 -9 24 24\n24 15 2 425 l-6 121 104 5 c89 5 115 2 184 -18 100 -29 116 -30 143 -1 27 29\n29 78 4 101 -18 16 -95 44 -179 66 l-43 11 0 183 0 182 97 28 c131 37 270 90\n375 142 48 24 92 44 98 44 7 0 10 -135 10 -399 l0 -400 -64 30 c-71 33 -106\n32 -131 -4 -38 -54 -12 -92 105 -153 85 -45 90 -49 90 -80 0 -64 71 -96 121\n-55 l24 19 3 624 c1 342 0 633 -3 646 -8 32 -41 62 -69 62 -13 0 -35 -9 -49\n-20z m-757 -665 l0 -195 -140 0 -140 0 0 195 0 195 140 0 140 0 0 -195z\"/>\n<path d=\"M4189 4696 c-78 -21 -144 -80 -180 -160 -17 -40 -23 -75 -27 -183\nl-5 -133 -59 0 c-53 0 -63 -3 -90 -30 -24 -25 -29 -36 -24 -58 11 -46 41 -62\n111 -62 l64 0 3 -239 c3 -218 5 -241 22 -260 24 -27 86 -29 109 -3 14 16 17\n52 19 258 l3 239 77 5 c88 6 109 19 110 70 1 25 -6 40 -26 57 -23 19 -38 23\n-98 23 l-70 0 4 125 c3 105 7 129 24 152 32 44 80 63 157 63 38 0 77 5 88 11\n48 25 44 105 -7 128 -32 14 -146 13 -205 -3z\"/>\n<path d=\"M3715 1526 c-38 -16 -102 -87 -112 -123 -5 -16 -8 -194 -8 -398 l0\n-370 25 -45 c28 -49 73 -84 129 -100 48 -13 704 -13 752 0 56 16 101 51 129\n100 l25 45 0 380 c0 416 1 406 -62 469 -54 55 -60 56 -470 56 -289 -1 -385 -4\n-408 -14z m780 -160 c14 -20 15 -69 13 -366 -3 -325 -4 -342 -22 -356 -29 -21\n-693 -21 -722 0 -18 14 -19 31 -22 356 -2 297 -1 346 13 366 l15 24 355 0 355\n0 15 -24z\"/>\n<path d=\"M4046 1225 c-125 -44 -181 -195 -118 -316 83 -160 311 -160 394 0 96\n184 -80 386 -276 316z m129 -160 c70 -69 -30 -170 -102 -103 -14 13 -23 33\n-23 50 0 36 40 78 75 78 14 0 37 -11 50 -25z\"/>\n<path d=\"M791 1406 c-49 -27 -50 -39 -51 -379 0 -338 3 -362 49 -387 51 -27\n82 -14 361 146 162 93 278 166 288 181 20 32 21 83 0 114 -23 35 -557 339\n-594 339 -16 -1 -40 -7 -53 -14z m296 -282 c93 -53 169 -98 171 -99 1 -1 -71\n-44 -160 -95 -90 -52 -173 -100 -185 -108 l-23 -14 0 212 c0 183 2 211 15 206\n8 -3 90 -49 182 -102z\"/>\n</g>\n</svg>\n                <h3>Healthcare Social Media Management</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M2567 4629 c-286 -42 -582 -177 -796 -363 l-65 -56 -362 0 c-361 0\n-363 0 -384 -22 -39 -42 -19 -101 41 -118 19 -6 154 -10 301 -10 l267 0 -47\n-64 c-26 -35 -51 -71 -57 -80 -9 -15 -66 -16 -662 -10 l-653 7 0 79 0 78 275\n0 c269 0 275 0 295 22 41 44 13 111 -52 123 -18 4 -154 5 -303 3 -302 -3 -318\n-7 -349 -72 -15 -31 -16 -161 -16 -1456 0 -1295 1 -1425 16 -1456 31 -66 16\n-64 617 -64 532 0 544 0 562 20 25 28 23 76 -4 103 -22 22 -22 22 -531 25\nl-510 3 0 1221 0 1220 607 -7 c335 -4 609 -9 611 -10 2 -2 -4 -18 -13 -35 -9\n-18 -34 -85 -55 -149 l-38 -116 -384 -2 c-270 -2 -390 -6 -405 -15 -13 -6 -27\n-27 -33 -47 -13 -46 -13 -585 0 -630 17 -62 7 -60 436 -61 l390 0 29 -92 c16\n-51 31 -99 33 -105 3 -10 -87 -13 -427 -13 -430 0 -430 0 -451 -22 -37 -40\n-21 -97 34 -118 17 -6 190 -10 476 -10 l449 0 17 -33 c9 -17 34 -58 55 -89 22\n-31 39 -62 39 -67 0 -8 -163 -11 -525 -11 l-524 0 -21 -22 c-37 -40 -21 -97\n34 -118 18 -6 229 -10 603 -10 l575 0 75 -70 c93 -87 255 -196 376 -254 429\n-205 921 -206 1350 -4 l107 51 93 -90 c106 -104 138 -118 210 -89 l42 16 115\n-115 115 -116 -1343 3 -1344 3 -19 -24 c-23 -28 -24 -69 -3 -99 15 -21 21 -22\n193 -22 98 0 180 -2 183 -5 2 -3 -9 -56 -26 -119 l-30 -113 -101 -6 c-56 -4\n-120 -13 -143 -21 -95 -34 -174 -113 -207 -207 -22 -60 -20 -181 3 -202 15\n-13 130 -16 1049 -19 980 -3 1032 -2 1051 15 26 24 33 62 22 136 -11 80 -41\n140 -96 195 -71 72 -120 90 -253 96 l-114 5 -32 117 c-18 65 -30 120 -27 123\n3 3 316 2 696 -1 l691 -7 185 -181 c107 -106 202 -190 225 -201 60 -29 180\n-32 237 -7 144 63 212 222 157 367 -20 53 -42 80 -201 241 l-178 181 0 1277\nc0 1162 -1 1281 -16 1312 -30 64 -33 64 -447 64 l-375 0 -73 62 c-220 184\n-487 306 -774 353 -98 16 -369 18 -468 4z m458 -154 c208 -34 427 -124 598\n-245 286 -205 494 -528 563 -877 13 -66 22 -88 42 -103 31 -25 63 -25 93 -1\n20 16 24 27 22 68 -3 68 -47 230 -92 340 l-39 93 179 0 179 0 0 -1022 0 -1023\n-124 124 -125 124 15 28 c18 36 18 92 0 127 -8 15 -50 62 -94 106 l-80 78 44\n92 c23 50 59 139 78 197 34 101 76 307 76 372 0 42 -35 77 -75 77 -51 0 -66\n-26 -85 -152 -51 -335 -188 -599 -429 -830 -229 -220 -517 -355 -830 -389\n-647 -70 -1271 325 -1490 944 -291 825 241 1726 1104 1871 110 19 359 19 470\n1z m1545 -495 l0 -80 -221 2 -221 3 -54 78 -55 77 276 0 275 0 0 -80z m-3345\n-887 c0 -109 3 -210 8 -225 l7 -28 -325 0 -325 0 0 225 0 225 318 0 317 0 0\n-197z m2918 -991 l57 -57 -190 -190 -190 -190 -60 60 -60 60 93 76 c87 72 188\n176 251 262 16 20 31 37 35 37 4 0 32 -26 64 -58z m439 -629 c201 -203 371\n-378 377 -390 26 -51 1 -131 -51 -163 -21 -13 -51 -20 -83 -20 l-49 0 -378\n377 -378 378 92 92 c51 51 95 93 98 93 3 0 170 -165 372 -367z m-1811 -401\nc15 -51 30 -104 33 -117 l6 -25 -450 0 c-425 0 -451 1 -446 18 3 9 17 60 31\n112 15 52 29 98 31 102 3 5 177 7 387 6 l382 -3 26 -93z m406 -315 c44 -23\n103 -94 103 -124 0 -7 -1830 -5 -1838 2 -2 2 3 16 12 33 19 37 79 90 109 96\n12 3 31 7 42 10 11 3 363 3 782 1 646 -3 766 -6 790 -18z\"/>\n<path d=\"M2685 4339 c-292 -24 -555 -143 -766 -346 -197 -190 -319 -408 -376\n-675 -25 -116 -25 -371 0 -488 64 -299 224 -566 445 -742 49 -39 82 -58 101\n-58 37 0 71 38 71 78 0 27 -12 41 -85 103 -184 154 -307 352 -372 596 -23 88\n-26 116 -26 268 0 151 3 181 25 266 36 132 78 229 147 336 230 355 621 547\n1042 512 518 -44 942 -447 1014 -964 12 -85 7 -276 -10 -363 -43 -226 -165\n-446 -335 -606 -290 -273 -694 -370 -1083 -260 -80 22 -90 23 -116 10 -47 -25\n-55 -70 -18 -110 16 -19 48 -32 114 -50 445 -117 890 -2 1219 316 194 188 319\n421 369 688 21 111 21 328 0 445 -69 390 -324 733 -678 911 -212 107 -444 152\n-682 133z\"/>\n<path d=\"M2025 3407 c-57 -19 -91 -44 -116 -84 -30 -49 -40 -101 -28 -149 18\n-71 63 -105 205 -159 65 -24 114 -58 114 -77 0 -5 -11 -20 -25 -33 -44 -45\n-134 -31 -209 32 -49 41 -116 10 -116 -55 0 -76 130 -152 258 -152 83 0 134\n22 184 78 48 53 65 111 49 171 -23 86 -70 125 -218 182 -104 40 -113 50 -80\n83 34 34 68 33 146 -5 56 -27 66 -29 92 -18 54 22 64 70 24 117 -52 62 -195\n97 -280 69z\"/>\n<path d=\"M2580 3413 c-51 -20 -50 -15 -50 -338 l0 -302 23 -21 c22 -20 33 -22\n163 -22 134 0 142 1 162 23 31 33 29 80 -4 106 -22 17 -41 21 -110 21 l-84 0\n0 60 0 60 79 0 c88 0 115 14 127 62 5 22 0 33 -24 58 -29 28 -35 30 -106 30\nl-76 0 0 60 0 60 90 0 c77 0 93 3 110 20 25 25 26 71 1 101 -18 23 -26 24\n-153 26 -73 1 -140 0 -148 -4z\"/>\n<path d=\"M3329 3406 c-102 -27 -181 -95 -228 -196 -22 -46 -26 -69 -26 -140 0\n-72 4 -93 27 -140 35 -72 99 -136 168 -169 47 -22 68 -26 150 -26 89 0 99 2\n158 34 67 36 114 86 153 161 33 63 35 212 3 281 -44 95 -131 168 -231 194 -68\n18 -112 18 -174 1z m143 -146 c155 -44 187 -257 52 -350 -66 -45 -172 -39\n-231 13 -71 62 -91 153 -52 234 43 89 135 129 231 103z\"/>\n<path d=\"M450 1758 c-41 -44 -13 -111 52 -123 18 -3 180 -5 359 -3 305 3 328\n4 348 22 27 25 29 86 3 109 -17 15 -58 17 -380 17 -359 0 -361 0 -382 -22z\"/>\n</g>\n</svg>\n                <h3>Healthcare Search Engine Optimization</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M3620 4984 c-241 -52 -449 -222 -549 -449 -26 -60 -61 -197 -61 -242\nl0 -33 -1235 0 c-1222 0 -1235 0 -1255 -20 -19 -19 -20 -33 -20 -509 l0 -489\n-119 -4 c-109 -4 -124 -7 -184 -36 -76 -38 -129 -92 -166 -171 -22 -47 -26\n-69 -26 -141 1 -71 5 -94 28 -141 50 -104 158 -183 267 -196 l49 -6 3 -239 c3\n-238 3 -240 27 -259 16 -13 39 -19 72 -19 l49 0 0 -462 0 -463 24 -50 c29 -60\n76 -107 136 -134 44 -20 63 -21 773 -21 l727 0 0 -165 0 -165 -104 0 c-187 0\n-260 -27 -313 -117 -26 -44 -28 -58 -32 -166 -3 -112 -2 -120 20 -143 l22 -24\n1058 0 1058 0 21 28 c20 25 22 36 18 142 -3 105 -6 119 -31 163 -53 90 -126\n117 -313 117 l-104 0 0 165 0 165 738 2 c697 3 739 4 772 22 49 26 98 74 123\n121 l22 40 3 1564 2 1564 -22 24 c-21 23 -22 23 -285 23 l-263 0 0 29 c0 16\n-7 62 -15 102 -63 296 -300 532 -597 593 -93 19 -230 19 -318 0z m353 -153\nc213 -75 373 -247 422 -452 68 -289 -74 -588 -341 -718 -168 -82 -380 -82\n-548 0 -219 107 -356 326 -356 569 0 288 191 534 473 611 95 25 264 21 350\n-10z m-940 -789 c59 -265 286 -491 562 -562 107 -27 264 -27 371 0 260 67 463\n255 548 512 14 42 26 88 26 102 l0 26 220 0 220 0 0 -1225 0 -1225 -2170 0\n-2170 0 0 180 0 180 50 0 c37 0 55 5 70 20 19 19 20 33 20 233 0 118 2 216 5\n219 3 3 123 -46 265 -110 l260 -115 0 -66 c0 -111 53 -185 154 -212 94 -26\n210 45 234 143 7 28 12 128 12 251 l0 203 51 24 c179 80 236 315 112 459 -41\n48 -117 101 -144 101 -16 0 -18 20 -21 233 -3 219 -4 234 -26 274 -58 110\n-212 138 -303 56 -55 -50 -62 -66 -69 -157 l-5 -78 -300 -134 c-181 -81 -313\n-134 -332 -134 l-33 0 0 440 0 440 1188 0 1187 0 18 -78z m-1479 -414 c14 -20\n16 -106 16 -736 l0 -713 -25 -24 c-28 -29 -42 -31 -73 -9 l-22 15 0 729 c0\n649 2 730 16 744 23 24 70 20 88 -6z m-244 -733 c0 -309 -3 -455 -10 -455 -13\n0 -490 210 -508 223 -9 8 -12 62 -10 235 l3 225 250 113 c138 61 256 112 263\n113 9 1 12 -96 12 -454z m-670 -1 l0 -205 -183 3 c-184 3 -184 3 -225 32 -50\n34 -92 112 -92 170 1 81 60 164 136 191 27 10 90 14 202 15 l162 0 0 -206z\nm1141 73 c37 -67 11 -174 -52 -207 -18 -10 -19 -6 -19 135 l0 146 24 -18 c14\n-10 34 -35 47 -56z m-1141 -607 l0 -190 -75 0 -75 0 0 183 c0 101 3 187 7 190\n3 4 37 7 75 7 l68 0 0 -190z m4340 -1026 c0 -216 -6 -246 -59 -277 -27 -16\n-167 -17 -2111 -17 -1909 0 -2084 1 -2110 16 -56 33 -60 53 -60 273 l0 201\n2170 0 2170 0 0 -196z m-1660 -599 l0 -165 -510 0 -510 0 0 165 0 165 510 0\n510 0 0 -165z m395 -320 c40 -16 55 -46 55 -111 l0 -44 -960 0 -960 0 0 51 c0\n62 12 87 53 104 49 22 1762 22 1812 0z\"/>\n<path d=\"M3730 4758 c-13 -14 -20 -36 -20 -62 -1 -39 -4 -43 -53 -71 -168 -96\n-168 -334 0 -430 l52 -30 0 -100 0 -100 -19 24 c-11 13 -20 36 -20 53 0 33\n-39 78 -68 78 -11 0 -32 -10 -47 -22 -25 -20 -27 -25 -22 -73 9 -92 66 -172\n145 -204 29 -12 32 -17 32 -57 0 -53 26 -84 70 -84 44 0 70 31 70 84 0 39 3\n45 28 54 46 16 103 73 128 127 57 121 6 268 -111 325 l-45 22 0 101 1 102 19\n-24 c11 -13 20 -36 20 -53 0 -35 40 -78 73 -78 13 0 33 10 45 23 61 65 -15\n230 -126 276 -29 12 -32 17 -32 57 0 76 -72 113 -120 62z m-20 -350 c0 -78 -1\n-81 -17 -65 -22 22 -24 106 -4 130 7 10 15 17 17 17 2 0 4 -37 4 -82z m177\n-350 c4 -34 1 -49 -16 -68 l-20 -25 -1 85 c0 77 1 83 16 68 9 -9 18 -36 21\n-60z\"/>\n<path d=\"M2062 3286 c-100 -101 -108 -121 -67 -161 40 -41 60 -33 161 67 102\n99 114 128 74 168 -40 40 -69 28 -168 -74z\"/>\n<path d=\"M3120 3201 c-95 -30 -191 -120 -225 -212 -19 -50 -20 -79 -20 -424 0\n-345 1 -374 20 -424 25 -68 101 -153 169 -189 l51 -27 680 0 680 0 53 28 c70\n37 128 97 161 166 l26 56 0 390 0 390 -26 56 c-33 69 -91 129 -161 166 l-53\n28 -665 2 c-366 1 -676 -2 -690 -6z m1355 -154 c21 -12 53 -42 70 -65 l30 -44\n3 -346 c2 -243 0 -359 -8 -387 -16 -55 -53 -101 -100 -125 -38 -19 -60 -20\n-673 -20 l-634 0 -44 23 c-29 16 -54 40 -74 72 l-30 48 0 362 0 362 30 48 c20\n32 45 56 74 72 l44 23 636 0 636 0 40 -23z\"/>\n<path d=\"M3559 2921 l-24 -19 0 -337 0 -337 25 -20 c16 -13 33 -18 50 -15 32\n7 561 312 578 334 19 26 14 62 -10 84 -36 31 -559 329 -578 329 -10 0 -28 -9\n-41 -19z m270 -264 c79 -46 143 -87 142 -93 0 -9 -278 -174 -293 -174 -5 0 -8\n79 -8 175 0 96 3 175 8 175 4 0 72 -37 151 -83z\"/>\n<path d=\"M2038 2943 c-35 -42 -27 -91 19 -112 33 -15 423 -15 457 0 13 7 30\n25 37 41 10 25 9 33 -8 56 l-20 27 -235 3 c-214 2 -236 1 -250 -15z\"/>\n<path d=\"M1991 2634 c-12 -15 -21 -36 -21 -47 0 -28 179 -207 207 -207 35 0\n73 38 73 73 0 25 -15 46 -88 119 -73 73 -94 88 -119 88 -22 0 -38 -8 -52 -26z\"/>\n<path d=\"M912 1334 c-22 -15 -30 -66 -14 -90 22 -33 48 -34 822 -34 l771 0 24\n25 c31 30 32 65 2 93 l-23 22 -780 0 c-689 0 -782 -2 -802 -16z\"/>\n<path d=\"M2780 1330 c-29 -29 -26 -74 6 -99 21 -17 41 -21 96 -21 97 0 128 18\n128 76 0 51 -24 64 -123 64 -74 0 -90 -3 -107 -20z\"/>\n</g>\n</svg>\n                <h3>Healthcare Paid Media Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/influencer.svg\"  alt=\"Healthcare Influencer Marketing\">\n                <h3>Healthcare Influencer Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/reputation-management.svg\"  alt=\"Healthcare Online Reputation Management\">\n                <h3>Healthcare Online Reputation Management</h3>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://health.ideascloud.in/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Upliftment Of Your Brand</h2>		\n		<p>Bring to us what troubles you and let us find the solution for you.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://health.ideascloud.in/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://health.ideascloud.in/hello-world/\">\n        </a>\n                    <a href=\"https://health.ideascloud.in/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://health.ideascloud.in/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://health.ideascloud.in/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-18 17:05:29','2023-07-18 11:35:29','',156,'https://health.ideascloud.in/?p=263',0,'revision','',0),(264,1,'2023-07-18 17:13:30','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-07-18 17:13:30','0000-00-00 00:00:00','',0,'https://health.ideascloud.in/?p=264',0,'post','',0),(265,1,'2023-07-18 17:48:38','2023-07-18 12:18:38','','','','publish','closed','closed','','265','','','2023-07-18 17:48:38','2023-07-18 12:18:38','',0,'https://health.ideascloud.in/?post_type=metform-entry&#038;p=265',0,'metform-entry','',0),(266,1,'2023-07-18 17:53:10','2023-07-18 12:23:10','','g','','inherit','closed','closed','','265-autosave-v1','','','2023-07-18 17:53:10','2023-07-18 12:23:10','',265,'https://health.ideascloud.in/?p=266',0,'revision','',0),(267,1,'2023-07-19 10:07:10','2023-07-19 04:37:10','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Healthcare Digital Marketing Services, A Brand Requires</h2>		\n                <h3>Healthcare Website Design</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M805 5109 c-356 -82 -641 -342 -748 -684 -113 -360 -12 -757 259\n-1015 90 -85 155 -131 267 -186 58 -29 76 -42 71 -54 -3 -8 -16 -56 -29 -107\n-43 -165 -58 -295 -58 -493 0 -205 15 -325 62 -505 16 -60 28 -111 28 -111 -1\n-1 -40 -20 -87 -44 -270 -134 -463 -378 -537 -678 -12 -47 -17 -112 -17 -217\n-1 -126 3 -164 23 -240 32 -124 73 -212 106 -227 34 -15 75 -1 95 34 13 25 13\n32 -4 75 -100 258 -100 489 3 708 115 246 308 407 572 476 164 43 384 25 543\n-46 192 -85 358 -251 442 -442 65 -147 87 -375 50 -526 -63 -264 -233 -473\n-478 -586 -129 -60 -201 -75 -358 -75 -110 0 -150 4 -215 22 -108 31 -226 90\n-309 157 -79 62 -120 71 -156 33 -44 -48 -22 -89 95 -176 178 -132 416 -202\n644 -189 362 21 678 231 841 557 24 47 43 86 44 87 0 1 51 -12 112 -27 311\n-80 686 -82 991 -5 53 14 104 27 113 30 14 4 23 -7 41 -52 74 -184 273 -389\n474 -490 559 -282 1255 41 1411 655 33 130 35 357 3 482 -74 290 -255 519\n-520 655 -52 26 -95 49 -96 49 -1 1 8 41 22 88 91 334 90 744 -5 1072 -11 38\n-19 70 -17 71 1 1 40 21 86 44 263 130 454 366 527 650 35 135 35 357 0 493\n-85 335 -338 602 -676 714 -82 28 -91 29 -295 29 -204 0 -212 -1 -295 -29\n-211 -71 -374 -186 -508 -360 -38 -49 -117 -188 -133 -233 -3 -8 -37 -2 -114\n18 -180 47 -300 62 -505 62 -198 0 -328 -15 -493 -58 -51 -13 -99 -26 -107\n-29 -11 -5 -25 15 -55 76 -128 265 -369 461 -659 537 -66 17 -108 21 -245 20\n-91 -1 -184 -5 -206 -10z m415 -154 c258 -68 478 -257 579 -500 48 -114 64\n-196 64 -325 0 -187 -48 -342 -153 -494 -55 -80 -63 -121 -30 -151 26 -24 74\n-23 101 1 35 31 99 131 140 218 76 163 109 350 90 518 -6 54 -11 102 -11 107\n0 23 244 75 429 92 201 17 456 -8 658 -67 l55 -16 -6 -39 c-54 -335 59 -673\n299 -898 226 -211 522 -306 836 -268 l66 8 22 -80 c86 -318 86 -659 -1 -984\nl-20 -78 -72 8 c-379 42 -727 -104 -945 -397 -104 -139 -161 -282 -188 -465\n-14 -93 -15 -128 -5 -224 6 -63 10 -116 8 -118 -9 -9 -208 -54 -302 -68 -139\n-21 -388 -21 -530 0 -95 14 -291 59 -301 69 -2 2 1 51 7 108 32 296 -74 594\n-289 809 -223 222 -520 323 -848 286 l-71 -8 -16 55 c-59 201 -84 456 -67 658\n17 193 69 428 94 428 7 0 53 -5 102 -11 167 -19 383 20 535 96 93 47 115 92\n68 142 -29 31 -48 29 -153 -16 -153 -66 -302 -89 -450 -71 -175 21 -346 100\n-475 218 -250 228 -341 579 -234 901 43 129 98 215 209 326 137 137 278 213\n457 244 75 14 271 6 348 -14z m3123 -4 c191 -50 374 -180 486 -344 47 -68 106\n-200 127 -282 26 -103 24 -303 -4 -410 -137 -512 -699 -782 -1178 -565 -231\n104 -409 316 -476 565 -28 108 -30 308 -3 410 69 267 262 492 507 592 160 65\n373 79 541 34z m-30 -3106 c299 -61 555 -311 639 -620 33 -123 30 -319 -6\n-438 -131 -434 -544 -693 -977 -611 -318 60 -568 290 -665 611 -23 77 -27 106\n-27 223 0 159 20 248 82 375 177 359 555 541 954 460z\"/>\n<path d=\"M1082 4564 c-64 -24 -137 -102 -159 -170 -17 -55 -18 -56 -50 -51\n-59 10 -137 58 -211 129 -63 62 -75 69 -100 64 -59 -14 -91 -96 -99 -252 -8\n-155 26 -252 124 -355 l54 -56 -32 -7 c-18 -3 -63 -9 -101 -13 -77 -7 -98 -24\n-98 -79 0 -38 19 -56 95 -90 98 -43 198 -64 304 -64 192 0 329 56 456 184 122\n123 176 239 195 423 8 70 15 100 34 128 36 53 67 142 60 171 -8 29 -40 54 -71\n54 -13 0 -45 -12 -71 -27 l-48 -27 -50 24 c-62 31 -169 37 -232 14z m186 -164\nc45 -32 47 -41 43 -145 -9 -225 -149 -407 -360 -469 -67 -20 -177 -22 -147 -3\n45 27 66 56 66 90 0 39 -13 52 -88 92 -106 57 -163 147 -170 269 l-5 79 34\n-25 c53 -40 114 -68 196 -89 164 -41 223 -16 223 97 0 118 112 174 208 104z\"/>\n<path d=\"M3067 3330 c-18 -14 -27 -32 -29 -57 -3 -36 -5 -38 -114 -94 -193\n-98 -483 -198 -515 -178 -8 5 -104 9 -214 9 -225 0 -250 -6 -292 -69 -22 -33\n-23 -41 -23 -275 0 -223 2 -243 20 -274 29 -47 75 -72 137 -72 28 0 54 -3 56\n-7 3 -5 10 -120 17 -258 10 -210 14 -254 29 -275 25 -35 82 -39 112 -9 24 24\n24 15 2 425 l-6 121 104 5 c89 5 115 2 184 -18 100 -29 116 -30 143 -1 27 29\n29 78 4 101 -18 16 -95 44 -179 66 l-43 11 0 183 0 182 97 28 c131 37 270 90\n375 142 48 24 92 44 98 44 7 0 10 -135 10 -399 l0 -400 -64 30 c-71 33 -106\n32 -131 -4 -38 -54 -12 -92 105 -153 85 -45 90 -49 90 -80 0 -64 71 -96 121\n-55 l24 19 3 624 c1 342 0 633 -3 646 -8 32 -41 62 -69 62 -13 0 -35 -9 -49\n-20z m-757 -665 l0 -195 -140 0 -140 0 0 195 0 195 140 0 140 0 0 -195z\"/>\n<path d=\"M4189 4696 c-78 -21 -144 -80 -180 -160 -17 -40 -23 -75 -27 -183\nl-5 -133 -59 0 c-53 0 -63 -3 -90 -30 -24 -25 -29 -36 -24 -58 11 -46 41 -62\n111 -62 l64 0 3 -239 c3 -218 5 -241 22 -260 24 -27 86 -29 109 -3 14 16 17\n52 19 258 l3 239 77 5 c88 6 109 19 110 70 1 25 -6 40 -26 57 -23 19 -38 23\n-98 23 l-70 0 4 125 c3 105 7 129 24 152 32 44 80 63 157 63 38 0 77 5 88 11\n48 25 44 105 -7 128 -32 14 -146 13 -205 -3z\"/>\n<path d=\"M3715 1526 c-38 -16 -102 -87 -112 -123 -5 -16 -8 -194 -8 -398 l0\n-370 25 -45 c28 -49 73 -84 129 -100 48 -13 704 -13 752 0 56 16 101 51 129\n100 l25 45 0 380 c0 416 1 406 -62 469 -54 55 -60 56 -470 56 -289 -1 -385 -4\n-408 -14z m780 -160 c14 -20 15 -69 13 -366 -3 -325 -4 -342 -22 -356 -29 -21\n-693 -21 -722 0 -18 14 -19 31 -22 356 -2 297 -1 346 13 366 l15 24 355 0 355\n0 15 -24z\"/>\n<path d=\"M4046 1225 c-125 -44 -181 -195 -118 -316 83 -160 311 -160 394 0 96\n184 -80 386 -276 316z m129 -160 c70 -69 -30 -170 -102 -103 -14 13 -23 33\n-23 50 0 36 40 78 75 78 14 0 37 -11 50 -25z\"/>\n<path d=\"M791 1406 c-49 -27 -50 -39 -51 -379 0 -338 3 -362 49 -387 51 -27\n82 -14 361 146 162 93 278 166 288 181 20 32 21 83 0 114 -23 35 -557 339\n-594 339 -16 -1 -40 -7 -53 -14z m296 -282 c93 -53 169 -98 171 -99 1 -1 -71\n-44 -160 -95 -90 -52 -173 -100 -185 -108 l-23 -14 0 212 c0 183 2 211 15 206\n8 -3 90 -49 182 -102z\"/>\n</g>\n</svg>\n                <h3>Healthcare Social Media Management</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M2567 4629 c-286 -42 -582 -177 -796 -363 l-65 -56 -362 0 c-361 0\n-363 0 -384 -22 -39 -42 -19 -101 41 -118 19 -6 154 -10 301 -10 l267 0 -47\n-64 c-26 -35 -51 -71 -57 -80 -9 -15 -66 -16 -662 -10 l-653 7 0 79 0 78 275\n0 c269 0 275 0 295 22 41 44 13 111 -52 123 -18 4 -154 5 -303 3 -302 -3 -318\n-7 -349 -72 -15 -31 -16 -161 -16 -1456 0 -1295 1 -1425 16 -1456 31 -66 16\n-64 617 -64 532 0 544 0 562 20 25 28 23 76 -4 103 -22 22 -22 22 -531 25\nl-510 3 0 1221 0 1220 607 -7 c335 -4 609 -9 611 -10 2 -2 -4 -18 -13 -35 -9\n-18 -34 -85 -55 -149 l-38 -116 -384 -2 c-270 -2 -390 -6 -405 -15 -13 -6 -27\n-27 -33 -47 -13 -46 -13 -585 0 -630 17 -62 7 -60 436 -61 l390 0 29 -92 c16\n-51 31 -99 33 -105 3 -10 -87 -13 -427 -13 -430 0 -430 0 -451 -22 -37 -40\n-21 -97 34 -118 17 -6 190 -10 476 -10 l449 0 17 -33 c9 -17 34 -58 55 -89 22\n-31 39 -62 39 -67 0 -8 -163 -11 -525 -11 l-524 0 -21 -22 c-37 -40 -21 -97\n34 -118 18 -6 229 -10 603 -10 l575 0 75 -70 c93 -87 255 -196 376 -254 429\n-205 921 -206 1350 -4 l107 51 93 -90 c106 -104 138 -118 210 -89 l42 16 115\n-115 115 -116 -1343 3 -1344 3 -19 -24 c-23 -28 -24 -69 -3 -99 15 -21 21 -22\n193 -22 98 0 180 -2 183 -5 2 -3 -9 -56 -26 -119 l-30 -113 -101 -6 c-56 -4\n-120 -13 -143 -21 -95 -34 -174 -113 -207 -207 -22 -60 -20 -181 3 -202 15\n-13 130 -16 1049 -19 980 -3 1032 -2 1051 15 26 24 33 62 22 136 -11 80 -41\n140 -96 195 -71 72 -120 90 -253 96 l-114 5 -32 117 c-18 65 -30 120 -27 123\n3 3 316 2 696 -1 l691 -7 185 -181 c107 -106 202 -190 225 -201 60 -29 180\n-32 237 -7 144 63 212 222 157 367 -20 53 -42 80 -201 241 l-178 181 0 1277\nc0 1162 -1 1281 -16 1312 -30 64 -33 64 -447 64 l-375 0 -73 62 c-220 184\n-487 306 -774 353 -98 16 -369 18 -468 4z m458 -154 c208 -34 427 -124 598\n-245 286 -205 494 -528 563 -877 13 -66 22 -88 42 -103 31 -25 63 -25 93 -1\n20 16 24 27 22 68 -3 68 -47 230 -92 340 l-39 93 179 0 179 0 0 -1022 0 -1023\n-124 124 -125 124 15 28 c18 36 18 92 0 127 -8 15 -50 62 -94 106 l-80 78 44\n92 c23 50 59 139 78 197 34 101 76 307 76 372 0 42 -35 77 -75 77 -51 0 -66\n-26 -85 -152 -51 -335 -188 -599 -429 -830 -229 -220 -517 -355 -830 -389\n-647 -70 -1271 325 -1490 944 -291 825 241 1726 1104 1871 110 19 359 19 470\n1z m1545 -495 l0 -80 -221 2 -221 3 -54 78 -55 77 276 0 275 0 0 -80z m-3345\n-887 c0 -109 3 -210 8 -225 l7 -28 -325 0 -325 0 0 225 0 225 318 0 317 0 0\n-197z m2918 -991 l57 -57 -190 -190 -190 -190 -60 60 -60 60 93 76 c87 72 188\n176 251 262 16 20 31 37 35 37 4 0 32 -26 64 -58z m439 -629 c201 -203 371\n-378 377 -390 26 -51 1 -131 -51 -163 -21 -13 -51 -20 -83 -20 l-49 0 -378\n377 -378 378 92 92 c51 51 95 93 98 93 3 0 170 -165 372 -367z m-1811 -401\nc15 -51 30 -104 33 -117 l6 -25 -450 0 c-425 0 -451 1 -446 18 3 9 17 60 31\n112 15 52 29 98 31 102 3 5 177 7 387 6 l382 -3 26 -93z m406 -315 c44 -23\n103 -94 103 -124 0 -7 -1830 -5 -1838 2 -2 2 3 16 12 33 19 37 79 90 109 96\n12 3 31 7 42 10 11 3 363 3 782 1 646 -3 766 -6 790 -18z\"/>\n<path d=\"M2685 4339 c-292 -24 -555 -143 -766 -346 -197 -190 -319 -408 -376\n-675 -25 -116 -25 -371 0 -488 64 -299 224 -566 445 -742 49 -39 82 -58 101\n-58 37 0 71 38 71 78 0 27 -12 41 -85 103 -184 154 -307 352 -372 596 -23 88\n-26 116 -26 268 0 151 3 181 25 266 36 132 78 229 147 336 230 355 621 547\n1042 512 518 -44 942 -447 1014 -964 12 -85 7 -276 -10 -363 -43 -226 -165\n-446 -335 -606 -290 -273 -694 -370 -1083 -260 -80 22 -90 23 -116 10 -47 -25\n-55 -70 -18 -110 16 -19 48 -32 114 -50 445 -117 890 -2 1219 316 194 188 319\n421 369 688 21 111 21 328 0 445 -69 390 -324 733 -678 911 -212 107 -444 152\n-682 133z\"/>\n<path d=\"M2025 3407 c-57 -19 -91 -44 -116 -84 -30 -49 -40 -101 -28 -149 18\n-71 63 -105 205 -159 65 -24 114 -58 114 -77 0 -5 -11 -20 -25 -33 -44 -45\n-134 -31 -209 32 -49 41 -116 10 -116 -55 0 -76 130 -152 258 -152 83 0 134\n22 184 78 48 53 65 111 49 171 -23 86 -70 125 -218 182 -104 40 -113 50 -80\n83 34 34 68 33 146 -5 56 -27 66 -29 92 -18 54 22 64 70 24 117 -52 62 -195\n97 -280 69z\"/>\n<path d=\"M2580 3413 c-51 -20 -50 -15 -50 -338 l0 -302 23 -21 c22 -20 33 -22\n163 -22 134 0 142 1 162 23 31 33 29 80 -4 106 -22 17 -41 21 -110 21 l-84 0\n0 60 0 60 79 0 c88 0 115 14 127 62 5 22 0 33 -24 58 -29 28 -35 30 -106 30\nl-76 0 0 60 0 60 90 0 c77 0 93 3 110 20 25 25 26 71 1 101 -18 23 -26 24\n-153 26 -73 1 -140 0 -148 -4z\"/>\n<path d=\"M3329 3406 c-102 -27 -181 -95 -228 -196 -22 -46 -26 -69 -26 -140 0\n-72 4 -93 27 -140 35 -72 99 -136 168 -169 47 -22 68 -26 150 -26 89 0 99 2\n158 34 67 36 114 86 153 161 33 63 35 212 3 281 -44 95 -131 168 -231 194 -68\n18 -112 18 -174 1z m143 -146 c155 -44 187 -257 52 -350 -66 -45 -172 -39\n-231 13 -71 62 -91 153 -52 234 43 89 135 129 231 103z\"/>\n<path d=\"M450 1758 c-41 -44 -13 -111 52 -123 18 -3 180 -5 359 -3 305 3 328\n4 348 22 27 25 29 86 3 109 -17 15 -58 17 -380 17 -359 0 -361 0 -382 -22z\"/>\n</g>\n</svg>\n                <h3>Healthcare Search Engine Optimization</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M3620 4984 c-241 -52 -449 -222 -549 -449 -26 -60 -61 -197 -61 -242\nl0 -33 -1235 0 c-1222 0 -1235 0 -1255 -20 -19 -19 -20 -33 -20 -509 l0 -489\n-119 -4 c-109 -4 -124 -7 -184 -36 -76 -38 -129 -92 -166 -171 -22 -47 -26\n-69 -26 -141 1 -71 5 -94 28 -141 50 -104 158 -183 267 -196 l49 -6 3 -239 c3\n-238 3 -240 27 -259 16 -13 39 -19 72 -19 l49 0 0 -462 0 -463 24 -50 c29 -60\n76 -107 136 -134 44 -20 63 -21 773 -21 l727 0 0 -165 0 -165 -104 0 c-187 0\n-260 -27 -313 -117 -26 -44 -28 -58 -32 -166 -3 -112 -2 -120 20 -143 l22 -24\n1058 0 1058 0 21 28 c20 25 22 36 18 142 -3 105 -6 119 -31 163 -53 90 -126\n117 -313 117 l-104 0 0 165 0 165 738 2 c697 3 739 4 772 22 49 26 98 74 123\n121 l22 40 3 1564 2 1564 -22 24 c-21 23 -22 23 -285 23 l-263 0 0 29 c0 16\n-7 62 -15 102 -63 296 -300 532 -597 593 -93 19 -230 19 -318 0z m353 -153\nc213 -75 373 -247 422 -452 68 -289 -74 -588 -341 -718 -168 -82 -380 -82\n-548 0 -219 107 -356 326 -356 569 0 288 191 534 473 611 95 25 264 21 350\n-10z m-940 -789 c59 -265 286 -491 562 -562 107 -27 264 -27 371 0 260 67 463\n255 548 512 14 42 26 88 26 102 l0 26 220 0 220 0 0 -1225 0 -1225 -2170 0\n-2170 0 0 180 0 180 50 0 c37 0 55 5 70 20 19 19 20 33 20 233 0 118 2 216 5\n219 3 3 123 -46 265 -110 l260 -115 0 -66 c0 -111 53 -185 154 -212 94 -26\n210 45 234 143 7 28 12 128 12 251 l0 203 51 24 c179 80 236 315 112 459 -41\n48 -117 101 -144 101 -16 0 -18 20 -21 233 -3 219 -4 234 -26 274 -58 110\n-212 138 -303 56 -55 -50 -62 -66 -69 -157 l-5 -78 -300 -134 c-181 -81 -313\n-134 -332 -134 l-33 0 0 440 0 440 1188 0 1187 0 18 -78z m-1479 -414 c14 -20\n16 -106 16 -736 l0 -713 -25 -24 c-28 -29 -42 -31 -73 -9 l-22 15 0 729 c0\n649 2 730 16 744 23 24 70 20 88 -6z m-244 -733 c0 -309 -3 -455 -10 -455 -13\n0 -490 210 -508 223 -9 8 -12 62 -10 235 l3 225 250 113 c138 61 256 112 263\n113 9 1 12 -96 12 -454z m-670 -1 l0 -205 -183 3 c-184 3 -184 3 -225 32 -50\n34 -92 112 -92 170 1 81 60 164 136 191 27 10 90 14 202 15 l162 0 0 -206z\nm1141 73 c37 -67 11 -174 -52 -207 -18 -10 -19 -6 -19 135 l0 146 24 -18 c14\n-10 34 -35 47 -56z m-1141 -607 l0 -190 -75 0 -75 0 0 183 c0 101 3 187 7 190\n3 4 37 7 75 7 l68 0 0 -190z m4340 -1026 c0 -216 -6 -246 -59 -277 -27 -16\n-167 -17 -2111 -17 -1909 0 -2084 1 -2110 16 -56 33 -60 53 -60 273 l0 201\n2170 0 2170 0 0 -196z m-1660 -599 l0 -165 -510 0 -510 0 0 165 0 165 510 0\n510 0 0 -165z m395 -320 c40 -16 55 -46 55 -111 l0 -44 -960 0 -960 0 0 51 c0\n62 12 87 53 104 49 22 1762 22 1812 0z\"/>\n<path d=\"M3730 4758 c-13 -14 -20 -36 -20 -62 -1 -39 -4 -43 -53 -71 -168 -96\n-168 -334 0 -430 l52 -30 0 -100 0 -100 -19 24 c-11 13 -20 36 -20 53 0 33\n-39 78 -68 78 -11 0 -32 -10 -47 -22 -25 -20 -27 -25 -22 -73 9 -92 66 -172\n145 -204 29 -12 32 -17 32 -57 0 -53 26 -84 70 -84 44 0 70 31 70 84 0 39 3\n45 28 54 46 16 103 73 128 127 57 121 6 268 -111 325 l-45 22 0 101 1 102 19\n-24 c11 -13 20 -36 20 -53 0 -35 40 -78 73 -78 13 0 33 10 45 23 61 65 -15\n230 -126 276 -29 12 -32 17 -32 57 0 76 -72 113 -120 62z m-20 -350 c0 -78 -1\n-81 -17 -65 -22 22 -24 106 -4 130 7 10 15 17 17 17 2 0 4 -37 4 -82z m177\n-350 c4 -34 1 -49 -16 -68 l-20 -25 -1 85 c0 77 1 83 16 68 9 -9 18 -36 21\n-60z\"/>\n<path d=\"M2062 3286 c-100 -101 -108 -121 -67 -161 40 -41 60 -33 161 67 102\n99 114 128 74 168 -40 40 -69 28 -168 -74z\"/>\n<path d=\"M3120 3201 c-95 -30 -191 -120 -225 -212 -19 -50 -20 -79 -20 -424 0\n-345 1 -374 20 -424 25 -68 101 -153 169 -189 l51 -27 680 0 680 0 53 28 c70\n37 128 97 161 166 l26 56 0 390 0 390 -26 56 c-33 69 -91 129 -161 166 l-53\n28 -665 2 c-366 1 -676 -2 -690 -6z m1355 -154 c21 -12 53 -42 70 -65 l30 -44\n3 -346 c2 -243 0 -359 -8 -387 -16 -55 -53 -101 -100 -125 -38 -19 -60 -20\n-673 -20 l-634 0 -44 23 c-29 16 -54 40 -74 72 l-30 48 0 362 0 362 30 48 c20\n32 45 56 74 72 l44 23 636 0 636 0 40 -23z\"/>\n<path d=\"M3559 2921 l-24 -19 0 -337 0 -337 25 -20 c16 -13 33 -18 50 -15 32\n7 561 312 578 334 19 26 14 62 -10 84 -36 31 -559 329 -578 329 -10 0 -28 -9\n-41 -19z m270 -264 c79 -46 143 -87 142 -93 0 -9 -278 -174 -293 -174 -5 0 -8\n79 -8 175 0 96 3 175 8 175 4 0 72 -37 151 -83z\"/>\n<path d=\"M2038 2943 c-35 -42 -27 -91 19 -112 33 -15 423 -15 457 0 13 7 30\n25 37 41 10 25 9 33 -8 56 l-20 27 -235 3 c-214 2 -236 1 -250 -15z\"/>\n<path d=\"M1991 2634 c-12 -15 -21 -36 -21 -47 0 -28 179 -207 207 -207 35 0\n73 38 73 73 0 25 -15 46 -88 119 -73 73 -94 88 -119 88 -22 0 -38 -8 -52 -26z\"/>\n<path d=\"M912 1334 c-22 -15 -30 -66 -14 -90 22 -33 48 -34 822 -34 l771 0 24\n25 c31 30 32 65 2 93 l-23 22 -780 0 c-689 0 -782 -2 -802 -16z\"/>\n<path d=\"M2780 1330 c-29 -29 -26 -74 6 -99 21 -17 41 -21 96 -21 97 0 128 18\n128 76 0 51 -24 64 -123 64 -74 0 -90 -3 -107 -20z\"/>\n</g>\n</svg>\n                <h3>Healthcare Paid Media Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/influencer.svg\"  alt=\"Healthcare Influencer Marketing\">\n                <h3>Healthcare Influencer Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/reputation-management.svg\"  alt=\"Healthcare Online Reputation Management\">\n                <h3>Healthcare Online Reputation Management</h3>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://health.ideascloud.in/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Upliftment Of Your Brand</h2>		\n		<p>Bring to us what troubles you and let us find the solution for you.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://health.ideascloud.in/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://health.ideascloud.in/hello-world/\">\n        </a>\n                    <a href=\"https://health.ideascloud.in/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://health.ideascloud.in/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://health.ideascloud.in/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-19 10:07:10','2023-07-19 04:37:10','',156,'https://health.ideascloud.in/?p=267',0,'revision','',0),(268,1,'2023-07-19 10:07:10','2023-07-19 04:37:10','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://healthcaremarketing.in8.cdn-alpha.com/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Healthcare Digital Marketing Services, A Brand Requires</h2>		\n                <h3>Healthcare Website Design</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M805 5109 c-356 -82 -641 -342 -748 -684 -113 -360 -12 -757 259\n-1015 90 -85 155 -131 267 -186 58 -29 76 -42 71 -54 -3 -8 -16 -56 -29 -107\n-43 -165 -58 -295 -58 -493 0 -205 15 -325 62 -505 16 -60 28 -111 28 -111 -1\n-1 -40 -20 -87 -44 -270 -134 -463 -378 -537 -678 -12 -47 -17 -112 -17 -217\n-1 -126 3 -164 23 -240 32 -124 73 -212 106 -227 34 -15 75 -1 95 34 13 25 13\n32 -4 75 -100 258 -100 489 3 708 115 246 308 407 572 476 164 43 384 25 543\n-46 192 -85 358 -251 442 -442 65 -147 87 -375 50 -526 -63 -264 -233 -473\n-478 -586 -129 -60 -201 -75 -358 -75 -110 0 -150 4 -215 22 -108 31 -226 90\n-309 157 -79 62 -120 71 -156 33 -44 -48 -22 -89 95 -176 178 -132 416 -202\n644 -189 362 21 678 231 841 557 24 47 43 86 44 87 0 1 51 -12 112 -27 311\n-80 686 -82 991 -5 53 14 104 27 113 30 14 4 23 -7 41 -52 74 -184 273 -389\n474 -490 559 -282 1255 41 1411 655 33 130 35 357 3 482 -74 290 -255 519\n-520 655 -52 26 -95 49 -96 49 -1 1 8 41 22 88 91 334 90 744 -5 1072 -11 38\n-19 70 -17 71 1 1 40 21 86 44 263 130 454 366 527 650 35 135 35 357 0 493\n-85 335 -338 602 -676 714 -82 28 -91 29 -295 29 -204 0 -212 -1 -295 -29\n-211 -71 -374 -186 -508 -360 -38 -49 -117 -188 -133 -233 -3 -8 -37 -2 -114\n18 -180 47 -300 62 -505 62 -198 0 -328 -15 -493 -58 -51 -13 -99 -26 -107\n-29 -11 -5 -25 15 -55 76 -128 265 -369 461 -659 537 -66 17 -108 21 -245 20\n-91 -1 -184 -5 -206 -10z m415 -154 c258 -68 478 -257 579 -500 48 -114 64\n-196 64 -325 0 -187 -48 -342 -153 -494 -55 -80 -63 -121 -30 -151 26 -24 74\n-23 101 1 35 31 99 131 140 218 76 163 109 350 90 518 -6 54 -11 102 -11 107\n0 23 244 75 429 92 201 17 456 -8 658 -67 l55 -16 -6 -39 c-54 -335 59 -673\n299 -898 226 -211 522 -306 836 -268 l66 8 22 -80 c86 -318 86 -659 -1 -984\nl-20 -78 -72 8 c-379 42 -727 -104 -945 -397 -104 -139 -161 -282 -188 -465\n-14 -93 -15 -128 -5 -224 6 -63 10 -116 8 -118 -9 -9 -208 -54 -302 -68 -139\n-21 -388 -21 -530 0 -95 14 -291 59 -301 69 -2 2 1 51 7 108 32 296 -74 594\n-289 809 -223 222 -520 323 -848 286 l-71 -8 -16 55 c-59 201 -84 456 -67 658\n17 193 69 428 94 428 7 0 53 -5 102 -11 167 -19 383 20 535 96 93 47 115 92\n68 142 -29 31 -48 29 -153 -16 -153 -66 -302 -89 -450 -71 -175 21 -346 100\n-475 218 -250 228 -341 579 -234 901 43 129 98 215 209 326 137 137 278 213\n457 244 75 14 271 6 348 -14z m3123 -4 c191 -50 374 -180 486 -344 47 -68 106\n-200 127 -282 26 -103 24 -303 -4 -410 -137 -512 -699 -782 -1178 -565 -231\n104 -409 316 -476 565 -28 108 -30 308 -3 410 69 267 262 492 507 592 160 65\n373 79 541 34z m-30 -3106 c299 -61 555 -311 639 -620 33 -123 30 -319 -6\n-438 -131 -434 -544 -693 -977 -611 -318 60 -568 290 -665 611 -23 77 -27 106\n-27 223 0 159 20 248 82 375 177 359 555 541 954 460z\"/>\n<path d=\"M1082 4564 c-64 -24 -137 -102 -159 -170 -17 -55 -18 -56 -50 -51\n-59 10 -137 58 -211 129 -63 62 -75 69 -100 64 -59 -14 -91 -96 -99 -252 -8\n-155 26 -252 124 -355 l54 -56 -32 -7 c-18 -3 -63 -9 -101 -13 -77 -7 -98 -24\n-98 -79 0 -38 19 -56 95 -90 98 -43 198 -64 304 -64 192 0 329 56 456 184 122\n123 176 239 195 423 8 70 15 100 34 128 36 53 67 142 60 171 -8 29 -40 54 -71\n54 -13 0 -45 -12 -71 -27 l-48 -27 -50 24 c-62 31 -169 37 -232 14z m186 -164\nc45 -32 47 -41 43 -145 -9 -225 -149 -407 -360 -469 -67 -20 -177 -22 -147 -3\n45 27 66 56 66 90 0 39 -13 52 -88 92 -106 57 -163 147 -170 269 l-5 79 34\n-25 c53 -40 114 -68 196 -89 164 -41 223 -16 223 97 0 118 112 174 208 104z\"/>\n<path d=\"M3067 3330 c-18 -14 -27 -32 -29 -57 -3 -36 -5 -38 -114 -94 -193\n-98 -483 -198 -515 -178 -8 5 -104 9 -214 9 -225 0 -250 -6 -292 -69 -22 -33\n-23 -41 -23 -275 0 -223 2 -243 20 -274 29 -47 75 -72 137 -72 28 0 54 -3 56\n-7 3 -5 10 -120 17 -258 10 -210 14 -254 29 -275 25 -35 82 -39 112 -9 24 24\n24 15 2 425 l-6 121 104 5 c89 5 115 2 184 -18 100 -29 116 -30 143 -1 27 29\n29 78 4 101 -18 16 -95 44 -179 66 l-43 11 0 183 0 182 97 28 c131 37 270 90\n375 142 48 24 92 44 98 44 7 0 10 -135 10 -399 l0 -400 -64 30 c-71 33 -106\n32 -131 -4 -38 -54 -12 -92 105 -153 85 -45 90 -49 90 -80 0 -64 71 -96 121\n-55 l24 19 3 624 c1 342 0 633 -3 646 -8 32 -41 62 -69 62 -13 0 -35 -9 -49\n-20z m-757 -665 l0 -195 -140 0 -140 0 0 195 0 195 140 0 140 0 0 -195z\"/>\n<path d=\"M4189 4696 c-78 -21 -144 -80 -180 -160 -17 -40 -23 -75 -27 -183\nl-5 -133 -59 0 c-53 0 -63 -3 -90 -30 -24 -25 -29 -36 -24 -58 11 -46 41 -62\n111 -62 l64 0 3 -239 c3 -218 5 -241 22 -260 24 -27 86 -29 109 -3 14 16 17\n52 19 258 l3 239 77 5 c88 6 109 19 110 70 1 25 -6 40 -26 57 -23 19 -38 23\n-98 23 l-70 0 4 125 c3 105 7 129 24 152 32 44 80 63 157 63 38 0 77 5 88 11\n48 25 44 105 -7 128 -32 14 -146 13 -205 -3z\"/>\n<path d=\"M3715 1526 c-38 -16 -102 -87 -112 -123 -5 -16 -8 -194 -8 -398 l0\n-370 25 -45 c28 -49 73 -84 129 -100 48 -13 704 -13 752 0 56 16 101 51 129\n100 l25 45 0 380 c0 416 1 406 -62 469 -54 55 -60 56 -470 56 -289 -1 -385 -4\n-408 -14z m780 -160 c14 -20 15 -69 13 -366 -3 -325 -4 -342 -22 -356 -29 -21\n-693 -21 -722 0 -18 14 -19 31 -22 356 -2 297 -1 346 13 366 l15 24 355 0 355\n0 15 -24z\"/>\n<path d=\"M4046 1225 c-125 -44 -181 -195 -118 -316 83 -160 311 -160 394 0 96\n184 -80 386 -276 316z m129 -160 c70 -69 -30 -170 -102 -103 -14 13 -23 33\n-23 50 0 36 40 78 75 78 14 0 37 -11 50 -25z\"/>\n<path d=\"M791 1406 c-49 -27 -50 -39 -51 -379 0 -338 3 -362 49 -387 51 -27\n82 -14 361 146 162 93 278 166 288 181 20 32 21 83 0 114 -23 35 -557 339\n-594 339 -16 -1 -40 -7 -53 -14z m296 -282 c93 -53 169 -98 171 -99 1 -1 -71\n-44 -160 -95 -90 -52 -173 -100 -185 -108 l-23 -14 0 212 c0 183 2 211 15 206\n8 -3 90 -49 182 -102z\"/>\n</g>\n</svg>\n                <h3>Healthcare Social Media Management</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M2567 4629 c-286 -42 -582 -177 -796 -363 l-65 -56 -362 0 c-361 0\n-363 0 -384 -22 -39 -42 -19 -101 41 -118 19 -6 154 -10 301 -10 l267 0 -47\n-64 c-26 -35 -51 -71 -57 -80 -9 -15 -66 -16 -662 -10 l-653 7 0 79 0 78 275\n0 c269 0 275 0 295 22 41 44 13 111 -52 123 -18 4 -154 5 -303 3 -302 -3 -318\n-7 -349 -72 -15 -31 -16 -161 -16 -1456 0 -1295 1 -1425 16 -1456 31 -66 16\n-64 617 -64 532 0 544 0 562 20 25 28 23 76 -4 103 -22 22 -22 22 -531 25\nl-510 3 0 1221 0 1220 607 -7 c335 -4 609 -9 611 -10 2 -2 -4 -18 -13 -35 -9\n-18 -34 -85 -55 -149 l-38 -116 -384 -2 c-270 -2 -390 -6 -405 -15 -13 -6 -27\n-27 -33 -47 -13 -46 -13 -585 0 -630 17 -62 7 -60 436 -61 l390 0 29 -92 c16\n-51 31 -99 33 -105 3 -10 -87 -13 -427 -13 -430 0 -430 0 -451 -22 -37 -40\n-21 -97 34 -118 17 -6 190 -10 476 -10 l449 0 17 -33 c9 -17 34 -58 55 -89 22\n-31 39 -62 39 -67 0 -8 -163 -11 -525 -11 l-524 0 -21 -22 c-37 -40 -21 -97\n34 -118 18 -6 229 -10 603 -10 l575 0 75 -70 c93 -87 255 -196 376 -254 429\n-205 921 -206 1350 -4 l107 51 93 -90 c106 -104 138 -118 210 -89 l42 16 115\n-115 115 -116 -1343 3 -1344 3 -19 -24 c-23 -28 -24 -69 -3 -99 15 -21 21 -22\n193 -22 98 0 180 -2 183 -5 2 -3 -9 -56 -26 -119 l-30 -113 -101 -6 c-56 -4\n-120 -13 -143 -21 -95 -34 -174 -113 -207 -207 -22 -60 -20 -181 3 -202 15\n-13 130 -16 1049 -19 980 -3 1032 -2 1051 15 26 24 33 62 22 136 -11 80 -41\n140 -96 195 -71 72 -120 90 -253 96 l-114 5 -32 117 c-18 65 -30 120 -27 123\n3 3 316 2 696 -1 l691 -7 185 -181 c107 -106 202 -190 225 -201 60 -29 180\n-32 237 -7 144 63 212 222 157 367 -20 53 -42 80 -201 241 l-178 181 0 1277\nc0 1162 -1 1281 -16 1312 -30 64 -33 64 -447 64 l-375 0 -73 62 c-220 184\n-487 306 -774 353 -98 16 -369 18 -468 4z m458 -154 c208 -34 427 -124 598\n-245 286 -205 494 -528 563 -877 13 -66 22 -88 42 -103 31 -25 63 -25 93 -1\n20 16 24 27 22 68 -3 68 -47 230 -92 340 l-39 93 179 0 179 0 0 -1022 0 -1023\n-124 124 -125 124 15 28 c18 36 18 92 0 127 -8 15 -50 62 -94 106 l-80 78 44\n92 c23 50 59 139 78 197 34 101 76 307 76 372 0 42 -35 77 -75 77 -51 0 -66\n-26 -85 -152 -51 -335 -188 -599 -429 -830 -229 -220 -517 -355 -830 -389\n-647 -70 -1271 325 -1490 944 -291 825 241 1726 1104 1871 110 19 359 19 470\n1z m1545 -495 l0 -80 -221 2 -221 3 -54 78 -55 77 276 0 275 0 0 -80z m-3345\n-887 c0 -109 3 -210 8 -225 l7 -28 -325 0 -325 0 0 225 0 225 318 0 317 0 0\n-197z m2918 -991 l57 -57 -190 -190 -190 -190 -60 60 -60 60 93 76 c87 72 188\n176 251 262 16 20 31 37 35 37 4 0 32 -26 64 -58z m439 -629 c201 -203 371\n-378 377 -390 26 -51 1 -131 -51 -163 -21 -13 -51 -20 -83 -20 l-49 0 -378\n377 -378 378 92 92 c51 51 95 93 98 93 3 0 170 -165 372 -367z m-1811 -401\nc15 -51 30 -104 33 -117 l6 -25 -450 0 c-425 0 -451 1 -446 18 3 9 17 60 31\n112 15 52 29 98 31 102 3 5 177 7 387 6 l382 -3 26 -93z m406 -315 c44 -23\n103 -94 103 -124 0 -7 -1830 -5 -1838 2 -2 2 3 16 12 33 19 37 79 90 109 96\n12 3 31 7 42 10 11 3 363 3 782 1 646 -3 766 -6 790 -18z\"/>\n<path d=\"M2685 4339 c-292 -24 -555 -143 -766 -346 -197 -190 -319 -408 -376\n-675 -25 -116 -25 -371 0 -488 64 -299 224 -566 445 -742 49 -39 82 -58 101\n-58 37 0 71 38 71 78 0 27 -12 41 -85 103 -184 154 -307 352 -372 596 -23 88\n-26 116 -26 268 0 151 3 181 25 266 36 132 78 229 147 336 230 355 621 547\n1042 512 518 -44 942 -447 1014 -964 12 -85 7 -276 -10 -363 -43 -226 -165\n-446 -335 -606 -290 -273 -694 -370 -1083 -260 -80 22 -90 23 -116 10 -47 -25\n-55 -70 -18 -110 16 -19 48 -32 114 -50 445 -117 890 -2 1219 316 194 188 319\n421 369 688 21 111 21 328 0 445 -69 390 -324 733 -678 911 -212 107 -444 152\n-682 133z\"/>\n<path d=\"M2025 3407 c-57 -19 -91 -44 -116 -84 -30 -49 -40 -101 -28 -149 18\n-71 63 -105 205 -159 65 -24 114 -58 114 -77 0 -5 -11 -20 -25 -33 -44 -45\n-134 -31 -209 32 -49 41 -116 10 -116 -55 0 -76 130 -152 258 -152 83 0 134\n22 184 78 48 53 65 111 49 171 -23 86 -70 125 -218 182 -104 40 -113 50 -80\n83 34 34 68 33 146 -5 56 -27 66 -29 92 -18 54 22 64 70 24 117 -52 62 -195\n97 -280 69z\"/>\n<path d=\"M2580 3413 c-51 -20 -50 -15 -50 -338 l0 -302 23 -21 c22 -20 33 -22\n163 -22 134 0 142 1 162 23 31 33 29 80 -4 106 -22 17 -41 21 -110 21 l-84 0\n0 60 0 60 79 0 c88 0 115 14 127 62 5 22 0 33 -24 58 -29 28 -35 30 -106 30\nl-76 0 0 60 0 60 90 0 c77 0 93 3 110 20 25 25 26 71 1 101 -18 23 -26 24\n-153 26 -73 1 -140 0 -148 -4z\"/>\n<path d=\"M3329 3406 c-102 -27 -181 -95 -228 -196 -22 -46 -26 -69 -26 -140 0\n-72 4 -93 27 -140 35 -72 99 -136 168 -169 47 -22 68 -26 150 -26 89 0 99 2\n158 34 67 36 114 86 153 161 33 63 35 212 3 281 -44 95 -131 168 -231 194 -68\n18 -112 18 -174 1z m143 -146 c155 -44 187 -257 52 -350 -66 -45 -172 -39\n-231 13 -71 62 -91 153 -52 234 43 89 135 129 231 103z\"/>\n<path d=\"M450 1758 c-41 -44 -13 -111 52 -123 18 -3 180 -5 359 -3 305 3 328\n4 348 22 27 25 29 86 3 109 -17 15 -58 17 -380 17 -359 0 -361 0 -382 -22z\"/>\n</g>\n</svg>\n                <h3>Healthcare Search Engine Optimization</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M3620 4984 c-241 -52 -449 -222 -549 -449 -26 -60 -61 -197 -61 -242\nl0 -33 -1235 0 c-1222 0 -1235 0 -1255 -20 -19 -19 -20 -33 -20 -509 l0 -489\n-119 -4 c-109 -4 -124 -7 -184 -36 -76 -38 -129 -92 -166 -171 -22 -47 -26\n-69 -26 -141 1 -71 5 -94 28 -141 50 -104 158 -183 267 -196 l49 -6 3 -239 c3\n-238 3 -240 27 -259 16 -13 39 -19 72 -19 l49 0 0 -462 0 -463 24 -50 c29 -60\n76 -107 136 -134 44 -20 63 -21 773 -21 l727 0 0 -165 0 -165 -104 0 c-187 0\n-260 -27 -313 -117 -26 -44 -28 -58 -32 -166 -3 -112 -2 -120 20 -143 l22 -24\n1058 0 1058 0 21 28 c20 25 22 36 18 142 -3 105 -6 119 -31 163 -53 90 -126\n117 -313 117 l-104 0 0 165 0 165 738 2 c697 3 739 4 772 22 49 26 98 74 123\n121 l22 40 3 1564 2 1564 -22 24 c-21 23 -22 23 -285 23 l-263 0 0 29 c0 16\n-7 62 -15 102 -63 296 -300 532 -597 593 -93 19 -230 19 -318 0z m353 -153\nc213 -75 373 -247 422 -452 68 -289 -74 -588 -341 -718 -168 -82 -380 -82\n-548 0 -219 107 -356 326 -356 569 0 288 191 534 473 611 95 25 264 21 350\n-10z m-940 -789 c59 -265 286 -491 562 -562 107 -27 264 -27 371 0 260 67 463\n255 548 512 14 42 26 88 26 102 l0 26 220 0 220 0 0 -1225 0 -1225 -2170 0\n-2170 0 0 180 0 180 50 0 c37 0 55 5 70 20 19 19 20 33 20 233 0 118 2 216 5\n219 3 3 123 -46 265 -110 l260 -115 0 -66 c0 -111 53 -185 154 -212 94 -26\n210 45 234 143 7 28 12 128 12 251 l0 203 51 24 c179 80 236 315 112 459 -41\n48 -117 101 -144 101 -16 0 -18 20 -21 233 -3 219 -4 234 -26 274 -58 110\n-212 138 -303 56 -55 -50 -62 -66 -69 -157 l-5 -78 -300 -134 c-181 -81 -313\n-134 -332 -134 l-33 0 0 440 0 440 1188 0 1187 0 18 -78z m-1479 -414 c14 -20\n16 -106 16 -736 l0 -713 -25 -24 c-28 -29 -42 -31 -73 -9 l-22 15 0 729 c0\n649 2 730 16 744 23 24 70 20 88 -6z m-244 -733 c0 -309 -3 -455 -10 -455 -13\n0 -490 210 -508 223 -9 8 -12 62 -10 235 l3 225 250 113 c138 61 256 112 263\n113 9 1 12 -96 12 -454z m-670 -1 l0 -205 -183 3 c-184 3 -184 3 -225 32 -50\n34 -92 112 -92 170 1 81 60 164 136 191 27 10 90 14 202 15 l162 0 0 -206z\nm1141 73 c37 -67 11 -174 -52 -207 -18 -10 -19 -6 -19 135 l0 146 24 -18 c14\n-10 34 -35 47 -56z m-1141 -607 l0 -190 -75 0 -75 0 0 183 c0 101 3 187 7 190\n3 4 37 7 75 7 l68 0 0 -190z m4340 -1026 c0 -216 -6 -246 -59 -277 -27 -16\n-167 -17 -2111 -17 -1909 0 -2084 1 -2110 16 -56 33 -60 53 -60 273 l0 201\n2170 0 2170 0 0 -196z m-1660 -599 l0 -165 -510 0 -510 0 0 165 0 165 510 0\n510 0 0 -165z m395 -320 c40 -16 55 -46 55 -111 l0 -44 -960 0 -960 0 0 51 c0\n62 12 87 53 104 49 22 1762 22 1812 0z\"/>\n<path d=\"M3730 4758 c-13 -14 -20 -36 -20 -62 -1 -39 -4 -43 -53 -71 -168 -96\n-168 -334 0 -430 l52 -30 0 -100 0 -100 -19 24 c-11 13 -20 36 -20 53 0 33\n-39 78 -68 78 -11 0 -32 -10 -47 -22 -25 -20 -27 -25 -22 -73 9 -92 66 -172\n145 -204 29 -12 32 -17 32 -57 0 -53 26 -84 70 -84 44 0 70 31 70 84 0 39 3\n45 28 54 46 16 103 73 128 127 57 121 6 268 -111 325 l-45 22 0 101 1 102 19\n-24 c11 -13 20 -36 20 -53 0 -35 40 -78 73 -78 13 0 33 10 45 23 61 65 -15\n230 -126 276 -29 12 -32 17 -32 57 0 76 -72 113 -120 62z m-20 -350 c0 -78 -1\n-81 -17 -65 -22 22 -24 106 -4 130 7 10 15 17 17 17 2 0 4 -37 4 -82z m177\n-350 c4 -34 1 -49 -16 -68 l-20 -25 -1 85 c0 77 1 83 16 68 9 -9 18 -36 21\n-60z\"/>\n<path d=\"M2062 3286 c-100 -101 -108 -121 -67 -161 40 -41 60 -33 161 67 102\n99 114 128 74 168 -40 40 -69 28 -168 -74z\"/>\n<path d=\"M3120 3201 c-95 -30 -191 -120 -225 -212 -19 -50 -20 -79 -20 -424 0\n-345 1 -374 20 -424 25 -68 101 -153 169 -189 l51 -27 680 0 680 0 53 28 c70\n37 128 97 161 166 l26 56 0 390 0 390 -26 56 c-33 69 -91 129 -161 166 l-53\n28 -665 2 c-366 1 -676 -2 -690 -6z m1355 -154 c21 -12 53 -42 70 -65 l30 -44\n3 -346 c2 -243 0 -359 -8 -387 -16 -55 -53 -101 -100 -125 -38 -19 -60 -20\n-673 -20 l-634 0 -44 23 c-29 16 -54 40 -74 72 l-30 48 0 362 0 362 30 48 c20\n32 45 56 74 72 l44 23 636 0 636 0 40 -23z\"/>\n<path d=\"M3559 2921 l-24 -19 0 -337 0 -337 25 -20 c16 -13 33 -18 50 -15 32\n7 561 312 578 334 19 26 14 62 -10 84 -36 31 -559 329 -578 329 -10 0 -28 -9\n-41 -19z m270 -264 c79 -46 143 -87 142 -93 0 -9 -278 -174 -293 -174 -5 0 -8\n79 -8 175 0 96 3 175 8 175 4 0 72 -37 151 -83z\"/>\n<path d=\"M2038 2943 c-35 -42 -27 -91 19 -112 33 -15 423 -15 457 0 13 7 30\n25 37 41 10 25 9 33 -8 56 l-20 27 -235 3 c-214 2 -236 1 -250 -15z\"/>\n<path d=\"M1991 2634 c-12 -15 -21 -36 -21 -47 0 -28 179 -207 207 -207 35 0\n73 38 73 73 0 25 -15 46 -88 119 -73 73 -94 88 -119 88 -22 0 -38 -8 -52 -26z\"/>\n<path d=\"M912 1334 c-22 -15 -30 -66 -14 -90 22 -33 48 -34 822 -34 l771 0 24\n25 c31 30 32 65 2 93 l-23 22 -780 0 c-689 0 -782 -2 -802 -16z\"/>\n<path d=\"M2780 1330 c-29 -29 -26 -74 6 -99 21 -17 41 -21 96 -21 97 0 128 18\n128 76 0 51 -24 64 -123 64 -74 0 -90 -3 -107 -20z\"/>\n</g>\n</svg>\n                <h3>Healthcare Paid Media Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/influencer.svg\"  alt=\"Healthcare Influencer Marketing\">\n                <h3>Healthcare Influencer Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/reputation-management.svg\"  alt=\"Healthcare Online Reputation Management\">\n                <h3>Healthcare Online Reputation Management</h3>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://health.ideascloud.in/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Upliftment Of Your Brand</h2>		\n		<p>Bring to us what troubles you and let us find the solution for you.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://health.ideascloud.in/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://health.ideascloud.in/hello-world/\">\n        </a>\n                    <a href=\"https://health.ideascloud.in/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://health.ideascloud.in/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://health.ideascloud.in/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-19 10:07:10','2023-07-19 04:37:10','',156,'https://health.ideascloud.in/?p=268',0,'revision','',0),(269,1,'2023-07-19 10:07:11','2023-07-19 04:37:11','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://health.ideascloud.in/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Healthcare Digital Marketing Services, A Brand Requires</h2>		\n                <h3>Healthcare Website Design</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M805 5109 c-356 -82 -641 -342 -748 -684 -113 -360 -12 -757 259\n-1015 90 -85 155 -131 267 -186 58 -29 76 -42 71 -54 -3 -8 -16 -56 -29 -107\n-43 -165 -58 -295 -58 -493 0 -205 15 -325 62 -505 16 -60 28 -111 28 -111 -1\n-1 -40 -20 -87 -44 -270 -134 -463 -378 -537 -678 -12 -47 -17 -112 -17 -217\n-1 -126 3 -164 23 -240 32 -124 73 -212 106 -227 34 -15 75 -1 95 34 13 25 13\n32 -4 75 -100 258 -100 489 3 708 115 246 308 407 572 476 164 43 384 25 543\n-46 192 -85 358 -251 442 -442 65 -147 87 -375 50 -526 -63 -264 -233 -473\n-478 -586 -129 -60 -201 -75 -358 -75 -110 0 -150 4 -215 22 -108 31 -226 90\n-309 157 -79 62 -120 71 -156 33 -44 -48 -22 -89 95 -176 178 -132 416 -202\n644 -189 362 21 678 231 841 557 24 47 43 86 44 87 0 1 51 -12 112 -27 311\n-80 686 -82 991 -5 53 14 104 27 113 30 14 4 23 -7 41 -52 74 -184 273 -389\n474 -490 559 -282 1255 41 1411 655 33 130 35 357 3 482 -74 290 -255 519\n-520 655 -52 26 -95 49 -96 49 -1 1 8 41 22 88 91 334 90 744 -5 1072 -11 38\n-19 70 -17 71 1 1 40 21 86 44 263 130 454 366 527 650 35 135 35 357 0 493\n-85 335 -338 602 -676 714 -82 28 -91 29 -295 29 -204 0 -212 -1 -295 -29\n-211 -71 -374 -186 -508 -360 -38 -49 -117 -188 -133 -233 -3 -8 -37 -2 -114\n18 -180 47 -300 62 -505 62 -198 0 -328 -15 -493 -58 -51 -13 -99 -26 -107\n-29 -11 -5 -25 15 -55 76 -128 265 -369 461 -659 537 -66 17 -108 21 -245 20\n-91 -1 -184 -5 -206 -10z m415 -154 c258 -68 478 -257 579 -500 48 -114 64\n-196 64 -325 0 -187 -48 -342 -153 -494 -55 -80 -63 -121 -30 -151 26 -24 74\n-23 101 1 35 31 99 131 140 218 76 163 109 350 90 518 -6 54 -11 102 -11 107\n0 23 244 75 429 92 201 17 456 -8 658 -67 l55 -16 -6 -39 c-54 -335 59 -673\n299 -898 226 -211 522 -306 836 -268 l66 8 22 -80 c86 -318 86 -659 -1 -984\nl-20 -78 -72 8 c-379 42 -727 -104 -945 -397 -104 -139 -161 -282 -188 -465\n-14 -93 -15 -128 -5 -224 6 -63 10 -116 8 -118 -9 -9 -208 -54 -302 -68 -139\n-21 -388 -21 -530 0 -95 14 -291 59 -301 69 -2 2 1 51 7 108 32 296 -74 594\n-289 809 -223 222 -520 323 -848 286 l-71 -8 -16 55 c-59 201 -84 456 -67 658\n17 193 69 428 94 428 7 0 53 -5 102 -11 167 -19 383 20 535 96 93 47 115 92\n68 142 -29 31 -48 29 -153 -16 -153 -66 -302 -89 -450 -71 -175 21 -346 100\n-475 218 -250 228 -341 579 -234 901 43 129 98 215 209 326 137 137 278 213\n457 244 75 14 271 6 348 -14z m3123 -4 c191 -50 374 -180 486 -344 47 -68 106\n-200 127 -282 26 -103 24 -303 -4 -410 -137 -512 -699 -782 -1178 -565 -231\n104 -409 316 -476 565 -28 108 -30 308 -3 410 69 267 262 492 507 592 160 65\n373 79 541 34z m-30 -3106 c299 -61 555 -311 639 -620 33 -123 30 -319 -6\n-438 -131 -434 -544 -693 -977 -611 -318 60 -568 290 -665 611 -23 77 -27 106\n-27 223 0 159 20 248 82 375 177 359 555 541 954 460z\"/>\n<path d=\"M1082 4564 c-64 -24 -137 -102 -159 -170 -17 -55 -18 -56 -50 -51\n-59 10 -137 58 -211 129 -63 62 -75 69 -100 64 -59 -14 -91 -96 -99 -252 -8\n-155 26 -252 124 -355 l54 -56 -32 -7 c-18 -3 -63 -9 -101 -13 -77 -7 -98 -24\n-98 -79 0 -38 19 -56 95 -90 98 -43 198 -64 304 -64 192 0 329 56 456 184 122\n123 176 239 195 423 8 70 15 100 34 128 36 53 67 142 60 171 -8 29 -40 54 -71\n54 -13 0 -45 -12 -71 -27 l-48 -27 -50 24 c-62 31 -169 37 -232 14z m186 -164\nc45 -32 47 -41 43 -145 -9 -225 -149 -407 -360 -469 -67 -20 -177 -22 -147 -3\n45 27 66 56 66 90 0 39 -13 52 -88 92 -106 57 -163 147 -170 269 l-5 79 34\n-25 c53 -40 114 -68 196 -89 164 -41 223 -16 223 97 0 118 112 174 208 104z\"/>\n<path d=\"M3067 3330 c-18 -14 -27 -32 -29 -57 -3 -36 -5 -38 -114 -94 -193\n-98 -483 -198 -515 -178 -8 5 -104 9 -214 9 -225 0 -250 -6 -292 -69 -22 -33\n-23 -41 -23 -275 0 -223 2 -243 20 -274 29 -47 75 -72 137 -72 28 0 54 -3 56\n-7 3 -5 10 -120 17 -258 10 -210 14 -254 29 -275 25 -35 82 -39 112 -9 24 24\n24 15 2 425 l-6 121 104 5 c89 5 115 2 184 -18 100 -29 116 -30 143 -1 27 29\n29 78 4 101 -18 16 -95 44 -179 66 l-43 11 0 183 0 182 97 28 c131 37 270 90\n375 142 48 24 92 44 98 44 7 0 10 -135 10 -399 l0 -400 -64 30 c-71 33 -106\n32 -131 -4 -38 -54 -12 -92 105 -153 85 -45 90 -49 90 -80 0 -64 71 -96 121\n-55 l24 19 3 624 c1 342 0 633 -3 646 -8 32 -41 62 -69 62 -13 0 -35 -9 -49\n-20z m-757 -665 l0 -195 -140 0 -140 0 0 195 0 195 140 0 140 0 0 -195z\"/>\n<path d=\"M4189 4696 c-78 -21 -144 -80 -180 -160 -17 -40 -23 -75 -27 -183\nl-5 -133 -59 0 c-53 0 -63 -3 -90 -30 -24 -25 -29 -36 -24 -58 11 -46 41 -62\n111 -62 l64 0 3 -239 c3 -218 5 -241 22 -260 24 -27 86 -29 109 -3 14 16 17\n52 19 258 l3 239 77 5 c88 6 109 19 110 70 1 25 -6 40 -26 57 -23 19 -38 23\n-98 23 l-70 0 4 125 c3 105 7 129 24 152 32 44 80 63 157 63 38 0 77 5 88 11\n48 25 44 105 -7 128 -32 14 -146 13 -205 -3z\"/>\n<path d=\"M3715 1526 c-38 -16 -102 -87 -112 -123 -5 -16 -8 -194 -8 -398 l0\n-370 25 -45 c28 -49 73 -84 129 -100 48 -13 704 -13 752 0 56 16 101 51 129\n100 l25 45 0 380 c0 416 1 406 -62 469 -54 55 -60 56 -470 56 -289 -1 -385 -4\n-408 -14z m780 -160 c14 -20 15 -69 13 -366 -3 -325 -4 -342 -22 -356 -29 -21\n-693 -21 -722 0 -18 14 -19 31 -22 356 -2 297 -1 346 13 366 l15 24 355 0 355\n0 15 -24z\"/>\n<path d=\"M4046 1225 c-125 -44 -181 -195 -118 -316 83 -160 311 -160 394 0 96\n184 -80 386 -276 316z m129 -160 c70 -69 -30 -170 -102 -103 -14 13 -23 33\n-23 50 0 36 40 78 75 78 14 0 37 -11 50 -25z\"/>\n<path d=\"M791 1406 c-49 -27 -50 -39 -51 -379 0 -338 3 -362 49 -387 51 -27\n82 -14 361 146 162 93 278 166 288 181 20 32 21 83 0 114 -23 35 -557 339\n-594 339 -16 -1 -40 -7 -53 -14z m296 -282 c93 -53 169 -98 171 -99 1 -1 -71\n-44 -160 -95 -90 -52 -173 -100 -185 -108 l-23 -14 0 212 c0 183 2 211 15 206\n8 -3 90 -49 182 -102z\"/>\n</g>\n</svg>\n                <h3>Healthcare Social Media Management</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M2567 4629 c-286 -42 -582 -177 -796 -363 l-65 -56 -362 0 c-361 0\n-363 0 -384 -22 -39 -42 -19 -101 41 -118 19 -6 154 -10 301 -10 l267 0 -47\n-64 c-26 -35 -51 -71 -57 -80 -9 -15 -66 -16 -662 -10 l-653 7 0 79 0 78 275\n0 c269 0 275 0 295 22 41 44 13 111 -52 123 -18 4 -154 5 -303 3 -302 -3 -318\n-7 -349 -72 -15 -31 -16 -161 -16 -1456 0 -1295 1 -1425 16 -1456 31 -66 16\n-64 617 -64 532 0 544 0 562 20 25 28 23 76 -4 103 -22 22 -22 22 -531 25\nl-510 3 0 1221 0 1220 607 -7 c335 -4 609 -9 611 -10 2 -2 -4 -18 -13 -35 -9\n-18 -34 -85 -55 -149 l-38 -116 -384 -2 c-270 -2 -390 -6 -405 -15 -13 -6 -27\n-27 -33 -47 -13 -46 -13 -585 0 -630 17 -62 7 -60 436 -61 l390 0 29 -92 c16\n-51 31 -99 33 -105 3 -10 -87 -13 -427 -13 -430 0 -430 0 -451 -22 -37 -40\n-21 -97 34 -118 17 -6 190 -10 476 -10 l449 0 17 -33 c9 -17 34 -58 55 -89 22\n-31 39 -62 39 -67 0 -8 -163 -11 -525 -11 l-524 0 -21 -22 c-37 -40 -21 -97\n34 -118 18 -6 229 -10 603 -10 l575 0 75 -70 c93 -87 255 -196 376 -254 429\n-205 921 -206 1350 -4 l107 51 93 -90 c106 -104 138 -118 210 -89 l42 16 115\n-115 115 -116 -1343 3 -1344 3 -19 -24 c-23 -28 -24 -69 -3 -99 15 -21 21 -22\n193 -22 98 0 180 -2 183 -5 2 -3 -9 -56 -26 -119 l-30 -113 -101 -6 c-56 -4\n-120 -13 -143 -21 -95 -34 -174 -113 -207 -207 -22 -60 -20 -181 3 -202 15\n-13 130 -16 1049 -19 980 -3 1032 -2 1051 15 26 24 33 62 22 136 -11 80 -41\n140 -96 195 -71 72 -120 90 -253 96 l-114 5 -32 117 c-18 65 -30 120 -27 123\n3 3 316 2 696 -1 l691 -7 185 -181 c107 -106 202 -190 225 -201 60 -29 180\n-32 237 -7 144 63 212 222 157 367 -20 53 -42 80 -201 241 l-178 181 0 1277\nc0 1162 -1 1281 -16 1312 -30 64 -33 64 -447 64 l-375 0 -73 62 c-220 184\n-487 306 -774 353 -98 16 -369 18 -468 4z m458 -154 c208 -34 427 -124 598\n-245 286 -205 494 -528 563 -877 13 -66 22 -88 42 -103 31 -25 63 -25 93 -1\n20 16 24 27 22 68 -3 68 -47 230 -92 340 l-39 93 179 0 179 0 0 -1022 0 -1023\n-124 124 -125 124 15 28 c18 36 18 92 0 127 -8 15 -50 62 -94 106 l-80 78 44\n92 c23 50 59 139 78 197 34 101 76 307 76 372 0 42 -35 77 -75 77 -51 0 -66\n-26 -85 -152 -51 -335 -188 -599 -429 -830 -229 -220 -517 -355 -830 -389\n-647 -70 -1271 325 -1490 944 -291 825 241 1726 1104 1871 110 19 359 19 470\n1z m1545 -495 l0 -80 -221 2 -221 3 -54 78 -55 77 276 0 275 0 0 -80z m-3345\n-887 c0 -109 3 -210 8 -225 l7 -28 -325 0 -325 0 0 225 0 225 318 0 317 0 0\n-197z m2918 -991 l57 -57 -190 -190 -190 -190 -60 60 -60 60 93 76 c87 72 188\n176 251 262 16 20 31 37 35 37 4 0 32 -26 64 -58z m439 -629 c201 -203 371\n-378 377 -390 26 -51 1 -131 -51 -163 -21 -13 -51 -20 -83 -20 l-49 0 -378\n377 -378 378 92 92 c51 51 95 93 98 93 3 0 170 -165 372 -367z m-1811 -401\nc15 -51 30 -104 33 -117 l6 -25 -450 0 c-425 0 -451 1 -446 18 3 9 17 60 31\n112 15 52 29 98 31 102 3 5 177 7 387 6 l382 -3 26 -93z m406 -315 c44 -23\n103 -94 103 -124 0 -7 -1830 -5 -1838 2 -2 2 3 16 12 33 19 37 79 90 109 96\n12 3 31 7 42 10 11 3 363 3 782 1 646 -3 766 -6 790 -18z\"/>\n<path d=\"M2685 4339 c-292 -24 -555 -143 -766 -346 -197 -190 -319 -408 -376\n-675 -25 -116 -25 -371 0 -488 64 -299 224 -566 445 -742 49 -39 82 -58 101\n-58 37 0 71 38 71 78 0 27 -12 41 -85 103 -184 154 -307 352 -372 596 -23 88\n-26 116 -26 268 0 151 3 181 25 266 36 132 78 229 147 336 230 355 621 547\n1042 512 518 -44 942 -447 1014 -964 12 -85 7 -276 -10 -363 -43 -226 -165\n-446 -335 -606 -290 -273 -694 -370 -1083 -260 -80 22 -90 23 -116 10 -47 -25\n-55 -70 -18 -110 16 -19 48 -32 114 -50 445 -117 890 -2 1219 316 194 188 319\n421 369 688 21 111 21 328 0 445 -69 390 -324 733 -678 911 -212 107 -444 152\n-682 133z\"/>\n<path d=\"M2025 3407 c-57 -19 -91 -44 -116 -84 -30 -49 -40 -101 -28 -149 18\n-71 63 -105 205 -159 65 -24 114 -58 114 -77 0 -5 -11 -20 -25 -33 -44 -45\n-134 -31 -209 32 -49 41 -116 10 -116 -55 0 -76 130 -152 258 -152 83 0 134\n22 184 78 48 53 65 111 49 171 -23 86 -70 125 -218 182 -104 40 -113 50 -80\n83 34 34 68 33 146 -5 56 -27 66 -29 92 -18 54 22 64 70 24 117 -52 62 -195\n97 -280 69z\"/>\n<path d=\"M2580 3413 c-51 -20 -50 -15 -50 -338 l0 -302 23 -21 c22 -20 33 -22\n163 -22 134 0 142 1 162 23 31 33 29 80 -4 106 -22 17 -41 21 -110 21 l-84 0\n0 60 0 60 79 0 c88 0 115 14 127 62 5 22 0 33 -24 58 -29 28 -35 30 -106 30\nl-76 0 0 60 0 60 90 0 c77 0 93 3 110 20 25 25 26 71 1 101 -18 23 -26 24\n-153 26 -73 1 -140 0 -148 -4z\"/>\n<path d=\"M3329 3406 c-102 -27 -181 -95 -228 -196 -22 -46 -26 -69 -26 -140 0\n-72 4 -93 27 -140 35 -72 99 -136 168 -169 47 -22 68 -26 150 -26 89 0 99 2\n158 34 67 36 114 86 153 161 33 63 35 212 3 281 -44 95 -131 168 -231 194 -68\n18 -112 18 -174 1z m143 -146 c155 -44 187 -257 52 -350 -66 -45 -172 -39\n-231 13 -71 62 -91 153 -52 234 43 89 135 129 231 103z\"/>\n<path d=\"M450 1758 c-41 -44 -13 -111 52 -123 18 -3 180 -5 359 -3 305 3 328\n4 348 22 27 25 29 86 3 109 -17 15 -58 17 -380 17 -359 0 -361 0 -382 -22z\"/>\n</g>\n</svg>\n                <h3>Healthcare Search Engine Optimization</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M3620 4984 c-241 -52 -449 -222 -549 -449 -26 -60 -61 -197 -61 -242\nl0 -33 -1235 0 c-1222 0 -1235 0 -1255 -20 -19 -19 -20 -33 -20 -509 l0 -489\n-119 -4 c-109 -4 -124 -7 -184 -36 -76 -38 -129 -92 -166 -171 -22 -47 -26\n-69 -26 -141 1 -71 5 -94 28 -141 50 -104 158 -183 267 -196 l49 -6 3 -239 c3\n-238 3 -240 27 -259 16 -13 39 -19 72 -19 l49 0 0 -462 0 -463 24 -50 c29 -60\n76 -107 136 -134 44 -20 63 -21 773 -21 l727 0 0 -165 0 -165 -104 0 c-187 0\n-260 -27 -313 -117 -26 -44 -28 -58 -32 -166 -3 -112 -2 -120 20 -143 l22 -24\n1058 0 1058 0 21 28 c20 25 22 36 18 142 -3 105 -6 119 -31 163 -53 90 -126\n117 -313 117 l-104 0 0 165 0 165 738 2 c697 3 739 4 772 22 49 26 98 74 123\n121 l22 40 3 1564 2 1564 -22 24 c-21 23 -22 23 -285 23 l-263 0 0 29 c0 16\n-7 62 -15 102 -63 296 -300 532 -597 593 -93 19 -230 19 -318 0z m353 -153\nc213 -75 373 -247 422 -452 68 -289 -74 -588 -341 -718 -168 -82 -380 -82\n-548 0 -219 107 -356 326 -356 569 0 288 191 534 473 611 95 25 264 21 350\n-10z m-940 -789 c59 -265 286 -491 562 -562 107 -27 264 -27 371 0 260 67 463\n255 548 512 14 42 26 88 26 102 l0 26 220 0 220 0 0 -1225 0 -1225 -2170 0\n-2170 0 0 180 0 180 50 0 c37 0 55 5 70 20 19 19 20 33 20 233 0 118 2 216 5\n219 3 3 123 -46 265 -110 l260 -115 0 -66 c0 -111 53 -185 154 -212 94 -26\n210 45 234 143 7 28 12 128 12 251 l0 203 51 24 c179 80 236 315 112 459 -41\n48 -117 101 -144 101 -16 0 -18 20 -21 233 -3 219 -4 234 -26 274 -58 110\n-212 138 -303 56 -55 -50 -62 -66 -69 -157 l-5 -78 -300 -134 c-181 -81 -313\n-134 -332 -134 l-33 0 0 440 0 440 1188 0 1187 0 18 -78z m-1479 -414 c14 -20\n16 -106 16 -736 l0 -713 -25 -24 c-28 -29 -42 -31 -73 -9 l-22 15 0 729 c0\n649 2 730 16 744 23 24 70 20 88 -6z m-244 -733 c0 -309 -3 -455 -10 -455 -13\n0 -490 210 -508 223 -9 8 -12 62 -10 235 l3 225 250 113 c138 61 256 112 263\n113 9 1 12 -96 12 -454z m-670 -1 l0 -205 -183 3 c-184 3 -184 3 -225 32 -50\n34 -92 112 -92 170 1 81 60 164 136 191 27 10 90 14 202 15 l162 0 0 -206z\nm1141 73 c37 -67 11 -174 -52 -207 -18 -10 -19 -6 -19 135 l0 146 24 -18 c14\n-10 34 -35 47 -56z m-1141 -607 l0 -190 -75 0 -75 0 0 183 c0 101 3 187 7 190\n3 4 37 7 75 7 l68 0 0 -190z m4340 -1026 c0 -216 -6 -246 -59 -277 -27 -16\n-167 -17 -2111 -17 -1909 0 -2084 1 -2110 16 -56 33 -60 53 -60 273 l0 201\n2170 0 2170 0 0 -196z m-1660 -599 l0 -165 -510 0 -510 0 0 165 0 165 510 0\n510 0 0 -165z m395 -320 c40 -16 55 -46 55 -111 l0 -44 -960 0 -960 0 0 51 c0\n62 12 87 53 104 49 22 1762 22 1812 0z\"/>\n<path d=\"M3730 4758 c-13 -14 -20 -36 -20 -62 -1 -39 -4 -43 -53 -71 -168 -96\n-168 -334 0 -430 l52 -30 0 -100 0 -100 -19 24 c-11 13 -20 36 -20 53 0 33\n-39 78 -68 78 -11 0 -32 -10 -47 -22 -25 -20 -27 -25 -22 -73 9 -92 66 -172\n145 -204 29 -12 32 -17 32 -57 0 -53 26 -84 70 -84 44 0 70 31 70 84 0 39 3\n45 28 54 46 16 103 73 128 127 57 121 6 268 -111 325 l-45 22 0 101 1 102 19\n-24 c11 -13 20 -36 20 -53 0 -35 40 -78 73 -78 13 0 33 10 45 23 61 65 -15\n230 -126 276 -29 12 -32 17 -32 57 0 76 -72 113 -120 62z m-20 -350 c0 -78 -1\n-81 -17 -65 -22 22 -24 106 -4 130 7 10 15 17 17 17 2 0 4 -37 4 -82z m177\n-350 c4 -34 1 -49 -16 -68 l-20 -25 -1 85 c0 77 1 83 16 68 9 -9 18 -36 21\n-60z\"/>\n<path d=\"M2062 3286 c-100 -101 -108 -121 -67 -161 40 -41 60 -33 161 67 102\n99 114 128 74 168 -40 40 -69 28 -168 -74z\"/>\n<path d=\"M3120 3201 c-95 -30 -191 -120 -225 -212 -19 -50 -20 -79 -20 -424 0\n-345 1 -374 20 -424 25 -68 101 -153 169 -189 l51 -27 680 0 680 0 53 28 c70\n37 128 97 161 166 l26 56 0 390 0 390 -26 56 c-33 69 -91 129 -161 166 l-53\n28 -665 2 c-366 1 -676 -2 -690 -6z m1355 -154 c21 -12 53 -42 70 -65 l30 -44\n3 -346 c2 -243 0 -359 -8 -387 -16 -55 -53 -101 -100 -125 -38 -19 -60 -20\n-673 -20 l-634 0 -44 23 c-29 16 -54 40 -74 72 l-30 48 0 362 0 362 30 48 c20\n32 45 56 74 72 l44 23 636 0 636 0 40 -23z\"/>\n<path d=\"M3559 2921 l-24 -19 0 -337 0 -337 25 -20 c16 -13 33 -18 50 -15 32\n7 561 312 578 334 19 26 14 62 -10 84 -36 31 -559 329 -578 329 -10 0 -28 -9\n-41 -19z m270 -264 c79 -46 143 -87 142 -93 0 -9 -278 -174 -293 -174 -5 0 -8\n79 -8 175 0 96 3 175 8 175 4 0 72 -37 151 -83z\"/>\n<path d=\"M2038 2943 c-35 -42 -27 -91 19 -112 33 -15 423 -15 457 0 13 7 30\n25 37 41 10 25 9 33 -8 56 l-20 27 -235 3 c-214 2 -236 1 -250 -15z\"/>\n<path d=\"M1991 2634 c-12 -15 -21 -36 -21 -47 0 -28 179 -207 207 -207 35 0\n73 38 73 73 0 25 -15 46 -88 119 -73 73 -94 88 -119 88 -22 0 -38 -8 -52 -26z\"/>\n<path d=\"M912 1334 c-22 -15 -30 -66 -14 -90 22 -33 48 -34 822 -34 l771 0 24\n25 c31 30 32 65 2 93 l-23 22 -780 0 c-689 0 -782 -2 -802 -16z\"/>\n<path d=\"M2780 1330 c-29 -29 -26 -74 6 -99 21 -17 41 -21 96 -21 97 0 128 18\n128 76 0 51 -24 64 -123 64 -74 0 -90 -3 -107 -20z\"/>\n</g>\n</svg>\n                <h3>Healthcare Paid Media Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/influencer.svg\"  alt=\"Healthcare Influencer Marketing\">\n                <h3>Healthcare Influencer Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/reputation-management.svg\"  alt=\"Healthcare Online Reputation Management\">\n                <h3>Healthcare Online Reputation Management</h3>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://health.ideascloud.in/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Upliftment Of Your Brand</h2>		\n		<p>Bring to us what troubles you and let us find the solution for you.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://health.ideascloud.in/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://health.ideascloud.in/hello-world/\">\n        </a>\n                    <a href=\"https://health.ideascloud.in/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://health.ideascloud.in/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://health.ideascloud.in/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-19 10:07:11','2023-07-19 04:37:11','',156,'https://health.ideascloud.in/?p=269',0,'revision','',0),(271,1,'2023-07-19 10:12:38','2023-07-19 04:42:38','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://health.ideascloud.in/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Healthcare Digital Marketing Services, A Brand Requires</h2>		\n                <h3>Healthcare Website Design</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M805 5109 c-356 -82 -641 -342 -748 -684 -113 -360 -12 -757 259\n-1015 90 -85 155 -131 267 -186 58 -29 76 -42 71 -54 -3 -8 -16 -56 -29 -107\n-43 -165 -58 -295 -58 -493 0 -205 15 -325 62 -505 16 -60 28 -111 28 -111 -1\n-1 -40 -20 -87 -44 -270 -134 -463 -378 -537 -678 -12 -47 -17 -112 -17 -217\n-1 -126 3 -164 23 -240 32 -124 73 -212 106 -227 34 -15 75 -1 95 34 13 25 13\n32 -4 75 -100 258 -100 489 3 708 115 246 308 407 572 476 164 43 384 25 543\n-46 192 -85 358 -251 442 -442 65 -147 87 -375 50 -526 -63 -264 -233 -473\n-478 -586 -129 -60 -201 -75 -358 -75 -110 0 -150 4 -215 22 -108 31 -226 90\n-309 157 -79 62 -120 71 -156 33 -44 -48 -22 -89 95 -176 178 -132 416 -202\n644 -189 362 21 678 231 841 557 24 47 43 86 44 87 0 1 51 -12 112 -27 311\n-80 686 -82 991 -5 53 14 104 27 113 30 14 4 23 -7 41 -52 74 -184 273 -389\n474 -490 559 -282 1255 41 1411 655 33 130 35 357 3 482 -74 290 -255 519\n-520 655 -52 26 -95 49 -96 49 -1 1 8 41 22 88 91 334 90 744 -5 1072 -11 38\n-19 70 -17 71 1 1 40 21 86 44 263 130 454 366 527 650 35 135 35 357 0 493\n-85 335 -338 602 -676 714 -82 28 -91 29 -295 29 -204 0 -212 -1 -295 -29\n-211 -71 -374 -186 -508 -360 -38 -49 -117 -188 -133 -233 -3 -8 -37 -2 -114\n18 -180 47 -300 62 -505 62 -198 0 -328 -15 -493 -58 -51 -13 -99 -26 -107\n-29 -11 -5 -25 15 -55 76 -128 265 -369 461 -659 537 -66 17 -108 21 -245 20\n-91 -1 -184 -5 -206 -10z m415 -154 c258 -68 478 -257 579 -500 48 -114 64\n-196 64 -325 0 -187 -48 -342 -153 -494 -55 -80 -63 -121 -30 -151 26 -24 74\n-23 101 1 35 31 99 131 140 218 76 163 109 350 90 518 -6 54 -11 102 -11 107\n0 23 244 75 429 92 201 17 456 -8 658 -67 l55 -16 -6 -39 c-54 -335 59 -673\n299 -898 226 -211 522 -306 836 -268 l66 8 22 -80 c86 -318 86 -659 -1 -984\nl-20 -78 -72 8 c-379 42 -727 -104 -945 -397 -104 -139 -161 -282 -188 -465\n-14 -93 -15 -128 -5 -224 6 -63 10 -116 8 -118 -9 -9 -208 -54 -302 -68 -139\n-21 -388 -21 -530 0 -95 14 -291 59 -301 69 -2 2 1 51 7 108 32 296 -74 594\n-289 809 -223 222 -520 323 -848 286 l-71 -8 -16 55 c-59 201 -84 456 -67 658\n17 193 69 428 94 428 7 0 53 -5 102 -11 167 -19 383 20 535 96 93 47 115 92\n68 142 -29 31 -48 29 -153 -16 -153 -66 -302 -89 -450 -71 -175 21 -346 100\n-475 218 -250 228 -341 579 -234 901 43 129 98 215 209 326 137 137 278 213\n457 244 75 14 271 6 348 -14z m3123 -4 c191 -50 374 -180 486 -344 47 -68 106\n-200 127 -282 26 -103 24 -303 -4 -410 -137 -512 -699 -782 -1178 -565 -231\n104 -409 316 -476 565 -28 108 -30 308 -3 410 69 267 262 492 507 592 160 65\n373 79 541 34z m-30 -3106 c299 -61 555 -311 639 -620 33 -123 30 -319 -6\n-438 -131 -434 -544 -693 -977 -611 -318 60 -568 290 -665 611 -23 77 -27 106\n-27 223 0 159 20 248 82 375 177 359 555 541 954 460z\"/>\n<path d=\"M1082 4564 c-64 -24 -137 -102 -159 -170 -17 -55 -18 -56 -50 -51\n-59 10 -137 58 -211 129 -63 62 -75 69 -100 64 -59 -14 -91 -96 -99 -252 -8\n-155 26 -252 124 -355 l54 -56 -32 -7 c-18 -3 -63 -9 -101 -13 -77 -7 -98 -24\n-98 -79 0 -38 19 -56 95 -90 98 -43 198 -64 304 -64 192 0 329 56 456 184 122\n123 176 239 195 423 8 70 15 100 34 128 36 53 67 142 60 171 -8 29 -40 54 -71\n54 -13 0 -45 -12 -71 -27 l-48 -27 -50 24 c-62 31 -169 37 -232 14z m186 -164\nc45 -32 47 -41 43 -145 -9 -225 -149 -407 -360 -469 -67 -20 -177 -22 -147 -3\n45 27 66 56 66 90 0 39 -13 52 -88 92 -106 57 -163 147 -170 269 l-5 79 34\n-25 c53 -40 114 -68 196 -89 164 -41 223 -16 223 97 0 118 112 174 208 104z\"/>\n<path d=\"M3067 3330 c-18 -14 -27 -32 -29 -57 -3 -36 -5 -38 -114 -94 -193\n-98 -483 -198 -515 -178 -8 5 -104 9 -214 9 -225 0 -250 -6 -292 -69 -22 -33\n-23 -41 -23 -275 0 -223 2 -243 20 -274 29 -47 75 -72 137 -72 28 0 54 -3 56\n-7 3 -5 10 -120 17 -258 10 -210 14 -254 29 -275 25 -35 82 -39 112 -9 24 24\n24 15 2 425 l-6 121 104 5 c89 5 115 2 184 -18 100 -29 116 -30 143 -1 27 29\n29 78 4 101 -18 16 -95 44 -179 66 l-43 11 0 183 0 182 97 28 c131 37 270 90\n375 142 48 24 92 44 98 44 7 0 10 -135 10 -399 l0 -400 -64 30 c-71 33 -106\n32 -131 -4 -38 -54 -12 -92 105 -153 85 -45 90 -49 90 -80 0 -64 71 -96 121\n-55 l24 19 3 624 c1 342 0 633 -3 646 -8 32 -41 62 -69 62 -13 0 -35 -9 -49\n-20z m-757 -665 l0 -195 -140 0 -140 0 0 195 0 195 140 0 140 0 0 -195z\"/>\n<path d=\"M4189 4696 c-78 -21 -144 -80 -180 -160 -17 -40 -23 -75 -27 -183\nl-5 -133 -59 0 c-53 0 -63 -3 -90 -30 -24 -25 -29 -36 -24 -58 11 -46 41 -62\n111 -62 l64 0 3 -239 c3 -218 5 -241 22 -260 24 -27 86 -29 109 -3 14 16 17\n52 19 258 l3 239 77 5 c88 6 109 19 110 70 1 25 -6 40 -26 57 -23 19 -38 23\n-98 23 l-70 0 4 125 c3 105 7 129 24 152 32 44 80 63 157 63 38 0 77 5 88 11\n48 25 44 105 -7 128 -32 14 -146 13 -205 -3z\"/>\n<path d=\"M3715 1526 c-38 -16 -102 -87 -112 -123 -5 -16 -8 -194 -8 -398 l0\n-370 25 -45 c28 -49 73 -84 129 -100 48 -13 704 -13 752 0 56 16 101 51 129\n100 l25 45 0 380 c0 416 1 406 -62 469 -54 55 -60 56 -470 56 -289 -1 -385 -4\n-408 -14z m780 -160 c14 -20 15 -69 13 -366 -3 -325 -4 -342 -22 -356 -29 -21\n-693 -21 -722 0 -18 14 -19 31 -22 356 -2 297 -1 346 13 366 l15 24 355 0 355\n0 15 -24z\"/>\n<path d=\"M4046 1225 c-125 -44 -181 -195 -118 -316 83 -160 311 -160 394 0 96\n184 -80 386 -276 316z m129 -160 c70 -69 -30 -170 -102 -103 -14 13 -23 33\n-23 50 0 36 40 78 75 78 14 0 37 -11 50 -25z\"/>\n<path d=\"M791 1406 c-49 -27 -50 -39 -51 -379 0 -338 3 -362 49 -387 51 -27\n82 -14 361 146 162 93 278 166 288 181 20 32 21 83 0 114 -23 35 -557 339\n-594 339 -16 -1 -40 -7 -53 -14z m296 -282 c93 -53 169 -98 171 -99 1 -1 -71\n-44 -160 -95 -90 -52 -173 -100 -185 -108 l-23 -14 0 212 c0 183 2 211 15 206\n8 -3 90 -49 182 -102z\"/>\n</g>\n</svg>\n                <h3>Healthcare Social Media Management</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M2567 4629 c-286 -42 -582 -177 -796 -363 l-65 -56 -362 0 c-361 0\n-363 0 -384 -22 -39 -42 -19 -101 41 -118 19 -6 154 -10 301 -10 l267 0 -47\n-64 c-26 -35 -51 -71 -57 -80 -9 -15 -66 -16 -662 -10 l-653 7 0 79 0 78 275\n0 c269 0 275 0 295 22 41 44 13 111 -52 123 -18 4 -154 5 -303 3 -302 -3 -318\n-7 -349 -72 -15 -31 -16 -161 -16 -1456 0 -1295 1 -1425 16 -1456 31 -66 16\n-64 617 -64 532 0 544 0 562 20 25 28 23 76 -4 103 -22 22 -22 22 -531 25\nl-510 3 0 1221 0 1220 607 -7 c335 -4 609 -9 611 -10 2 -2 -4 -18 -13 -35 -9\n-18 -34 -85 -55 -149 l-38 -116 -384 -2 c-270 -2 -390 -6 -405 -15 -13 -6 -27\n-27 -33 -47 -13 -46 -13 -585 0 -630 17 -62 7 -60 436 -61 l390 0 29 -92 c16\n-51 31 -99 33 -105 3 -10 -87 -13 -427 -13 -430 0 -430 0 -451 -22 -37 -40\n-21 -97 34 -118 17 -6 190 -10 476 -10 l449 0 17 -33 c9 -17 34 -58 55 -89 22\n-31 39 -62 39 -67 0 -8 -163 -11 -525 -11 l-524 0 -21 -22 c-37 -40 -21 -97\n34 -118 18 -6 229 -10 603 -10 l575 0 75 -70 c93 -87 255 -196 376 -254 429\n-205 921 -206 1350 -4 l107 51 93 -90 c106 -104 138 -118 210 -89 l42 16 115\n-115 115 -116 -1343 3 -1344 3 -19 -24 c-23 -28 -24 -69 -3 -99 15 -21 21 -22\n193 -22 98 0 180 -2 183 -5 2 -3 -9 -56 -26 -119 l-30 -113 -101 -6 c-56 -4\n-120 -13 -143 -21 -95 -34 -174 -113 -207 -207 -22 -60 -20 -181 3 -202 15\n-13 130 -16 1049 -19 980 -3 1032 -2 1051 15 26 24 33 62 22 136 -11 80 -41\n140 -96 195 -71 72 -120 90 -253 96 l-114 5 -32 117 c-18 65 -30 120 -27 123\n3 3 316 2 696 -1 l691 -7 185 -181 c107 -106 202 -190 225 -201 60 -29 180\n-32 237 -7 144 63 212 222 157 367 -20 53 -42 80 -201 241 l-178 181 0 1277\nc0 1162 -1 1281 -16 1312 -30 64 -33 64 -447 64 l-375 0 -73 62 c-220 184\n-487 306 -774 353 -98 16 -369 18 -468 4z m458 -154 c208 -34 427 -124 598\n-245 286 -205 494 -528 563 -877 13 -66 22 -88 42 -103 31 -25 63 -25 93 -1\n20 16 24 27 22 68 -3 68 -47 230 -92 340 l-39 93 179 0 179 0 0 -1022 0 -1023\n-124 124 -125 124 15 28 c18 36 18 92 0 127 -8 15 -50 62 -94 106 l-80 78 44\n92 c23 50 59 139 78 197 34 101 76 307 76 372 0 42 -35 77 -75 77 -51 0 -66\n-26 -85 -152 -51 -335 -188 -599 -429 -830 -229 -220 -517 -355 -830 -389\n-647 -70 -1271 325 -1490 944 -291 825 241 1726 1104 1871 110 19 359 19 470\n1z m1545 -495 l0 -80 -221 2 -221 3 -54 78 -55 77 276 0 275 0 0 -80z m-3345\n-887 c0 -109 3 -210 8 -225 l7 -28 -325 0 -325 0 0 225 0 225 318 0 317 0 0\n-197z m2918 -991 l57 -57 -190 -190 -190 -190 -60 60 -60 60 93 76 c87 72 188\n176 251 262 16 20 31 37 35 37 4 0 32 -26 64 -58z m439 -629 c201 -203 371\n-378 377 -390 26 -51 1 -131 -51 -163 -21 -13 -51 -20 -83 -20 l-49 0 -378\n377 -378 378 92 92 c51 51 95 93 98 93 3 0 170 -165 372 -367z m-1811 -401\nc15 -51 30 -104 33 -117 l6 -25 -450 0 c-425 0 -451 1 -446 18 3 9 17 60 31\n112 15 52 29 98 31 102 3 5 177 7 387 6 l382 -3 26 -93z m406 -315 c44 -23\n103 -94 103 -124 0 -7 -1830 -5 -1838 2 -2 2 3 16 12 33 19 37 79 90 109 96\n12 3 31 7 42 10 11 3 363 3 782 1 646 -3 766 -6 790 -18z\"/>\n<path d=\"M2685 4339 c-292 -24 -555 -143 -766 -346 -197 -190 -319 -408 -376\n-675 -25 -116 -25 -371 0 -488 64 -299 224 -566 445 -742 49 -39 82 -58 101\n-58 37 0 71 38 71 78 0 27 -12 41 -85 103 -184 154 -307 352 -372 596 -23 88\n-26 116 -26 268 0 151 3 181 25 266 36 132 78 229 147 336 230 355 621 547\n1042 512 518 -44 942 -447 1014 -964 12 -85 7 -276 -10 -363 -43 -226 -165\n-446 -335 -606 -290 -273 -694 -370 -1083 -260 -80 22 -90 23 -116 10 -47 -25\n-55 -70 -18 -110 16 -19 48 -32 114 -50 445 -117 890 -2 1219 316 194 188 319\n421 369 688 21 111 21 328 0 445 -69 390 -324 733 -678 911 -212 107 -444 152\n-682 133z\"/>\n<path d=\"M2025 3407 c-57 -19 -91 -44 -116 -84 -30 -49 -40 -101 -28 -149 18\n-71 63 -105 205 -159 65 -24 114 -58 114 -77 0 -5 -11 -20 -25 -33 -44 -45\n-134 -31 -209 32 -49 41 -116 10 -116 -55 0 -76 130 -152 258 -152 83 0 134\n22 184 78 48 53 65 111 49 171 -23 86 -70 125 -218 182 -104 40 -113 50 -80\n83 34 34 68 33 146 -5 56 -27 66 -29 92 -18 54 22 64 70 24 117 -52 62 -195\n97 -280 69z\"/>\n<path d=\"M2580 3413 c-51 -20 -50 -15 -50 -338 l0 -302 23 -21 c22 -20 33 -22\n163 -22 134 0 142 1 162 23 31 33 29 80 -4 106 -22 17 -41 21 -110 21 l-84 0\n0 60 0 60 79 0 c88 0 115 14 127 62 5 22 0 33 -24 58 -29 28 -35 30 -106 30\nl-76 0 0 60 0 60 90 0 c77 0 93 3 110 20 25 25 26 71 1 101 -18 23 -26 24\n-153 26 -73 1 -140 0 -148 -4z\"/>\n<path d=\"M3329 3406 c-102 -27 -181 -95 -228 -196 -22 -46 -26 -69 -26 -140 0\n-72 4 -93 27 -140 35 -72 99 -136 168 -169 47 -22 68 -26 150 -26 89 0 99 2\n158 34 67 36 114 86 153 161 33 63 35 212 3 281 -44 95 -131 168 -231 194 -68\n18 -112 18 -174 1z m143 -146 c155 -44 187 -257 52 -350 -66 -45 -172 -39\n-231 13 -71 62 -91 153 -52 234 43 89 135 129 231 103z\"/>\n<path d=\"M450 1758 c-41 -44 -13 -111 52 -123 18 -3 180 -5 359 -3 305 3 328\n4 348 22 27 25 29 86 3 109 -17 15 -58 17 -380 17 -359 0 -361 0 -382 -22z\"/>\n</g>\n</svg>\n                <h3>Healthcare Search Engine Optimization</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M3620 4984 c-241 -52 -449 -222 -549 -449 -26 -60 -61 -197 -61 -242\nl0 -33 -1235 0 c-1222 0 -1235 0 -1255 -20 -19 -19 -20 -33 -20 -509 l0 -489\n-119 -4 c-109 -4 -124 -7 -184 -36 -76 -38 -129 -92 -166 -171 -22 -47 -26\n-69 -26 -141 1 -71 5 -94 28 -141 50 -104 158 -183 267 -196 l49 -6 3 -239 c3\n-238 3 -240 27 -259 16 -13 39 -19 72 -19 l49 0 0 -462 0 -463 24 -50 c29 -60\n76 -107 136 -134 44 -20 63 -21 773 -21 l727 0 0 -165 0 -165 -104 0 c-187 0\n-260 -27 -313 -117 -26 -44 -28 -58 -32 -166 -3 -112 -2 -120 20 -143 l22 -24\n1058 0 1058 0 21 28 c20 25 22 36 18 142 -3 105 -6 119 -31 163 -53 90 -126\n117 -313 117 l-104 0 0 165 0 165 738 2 c697 3 739 4 772 22 49 26 98 74 123\n121 l22 40 3 1564 2 1564 -22 24 c-21 23 -22 23 -285 23 l-263 0 0 29 c0 16\n-7 62 -15 102 -63 296 -300 532 -597 593 -93 19 -230 19 -318 0z m353 -153\nc213 -75 373 -247 422 -452 68 -289 -74 -588 -341 -718 -168 -82 -380 -82\n-548 0 -219 107 -356 326 -356 569 0 288 191 534 473 611 95 25 264 21 350\n-10z m-940 -789 c59 -265 286 -491 562 -562 107 -27 264 -27 371 0 260 67 463\n255 548 512 14 42 26 88 26 102 l0 26 220 0 220 0 0 -1225 0 -1225 -2170 0\n-2170 0 0 180 0 180 50 0 c37 0 55 5 70 20 19 19 20 33 20 233 0 118 2 216 5\n219 3 3 123 -46 265 -110 l260 -115 0 -66 c0 -111 53 -185 154 -212 94 -26\n210 45 234 143 7 28 12 128 12 251 l0 203 51 24 c179 80 236 315 112 459 -41\n48 -117 101 -144 101 -16 0 -18 20 -21 233 -3 219 -4 234 -26 274 -58 110\n-212 138 -303 56 -55 -50 -62 -66 -69 -157 l-5 -78 -300 -134 c-181 -81 -313\n-134 -332 -134 l-33 0 0 440 0 440 1188 0 1187 0 18 -78z m-1479 -414 c14 -20\n16 -106 16 -736 l0 -713 -25 -24 c-28 -29 -42 -31 -73 -9 l-22 15 0 729 c0\n649 2 730 16 744 23 24 70 20 88 -6z m-244 -733 c0 -309 -3 -455 -10 -455 -13\n0 -490 210 -508 223 -9 8 -12 62 -10 235 l3 225 250 113 c138 61 256 112 263\n113 9 1 12 -96 12 -454z m-670 -1 l0 -205 -183 3 c-184 3 -184 3 -225 32 -50\n34 -92 112 -92 170 1 81 60 164 136 191 27 10 90 14 202 15 l162 0 0 -206z\nm1141 73 c37 -67 11 -174 -52 -207 -18 -10 -19 -6 -19 135 l0 146 24 -18 c14\n-10 34 -35 47 -56z m-1141 -607 l0 -190 -75 0 -75 0 0 183 c0 101 3 187 7 190\n3 4 37 7 75 7 l68 0 0 -190z m4340 -1026 c0 -216 -6 -246 -59 -277 -27 -16\n-167 -17 -2111 -17 -1909 0 -2084 1 -2110 16 -56 33 -60 53 -60 273 l0 201\n2170 0 2170 0 0 -196z m-1660 -599 l0 -165 -510 0 -510 0 0 165 0 165 510 0\n510 0 0 -165z m395 -320 c40 -16 55 -46 55 -111 l0 -44 -960 0 -960 0 0 51 c0\n62 12 87 53 104 49 22 1762 22 1812 0z\"/>\n<path d=\"M3730 4758 c-13 -14 -20 -36 -20 -62 -1 -39 -4 -43 -53 -71 -168 -96\n-168 -334 0 -430 l52 -30 0 -100 0 -100 -19 24 c-11 13 -20 36 -20 53 0 33\n-39 78 -68 78 -11 0 -32 -10 -47 -22 -25 -20 -27 -25 -22 -73 9 -92 66 -172\n145 -204 29 -12 32 -17 32 -57 0 -53 26 -84 70 -84 44 0 70 31 70 84 0 39 3\n45 28 54 46 16 103 73 128 127 57 121 6 268 -111 325 l-45 22 0 101 1 102 19\n-24 c11 -13 20 -36 20 -53 0 -35 40 -78 73 -78 13 0 33 10 45 23 61 65 -15\n230 -126 276 -29 12 -32 17 -32 57 0 76 -72 113 -120 62z m-20 -350 c0 -78 -1\n-81 -17 -65 -22 22 -24 106 -4 130 7 10 15 17 17 17 2 0 4 -37 4 -82z m177\n-350 c4 -34 1 -49 -16 -68 l-20 -25 -1 85 c0 77 1 83 16 68 9 -9 18 -36 21\n-60z\"/>\n<path d=\"M2062 3286 c-100 -101 -108 -121 -67 -161 40 -41 60 -33 161 67 102\n99 114 128 74 168 -40 40 -69 28 -168 -74z\"/>\n<path d=\"M3120 3201 c-95 -30 -191 -120 -225 -212 -19 -50 -20 -79 -20 -424 0\n-345 1 -374 20 -424 25 -68 101 -153 169 -189 l51 -27 680 0 680 0 53 28 c70\n37 128 97 161 166 l26 56 0 390 0 390 -26 56 c-33 69 -91 129 -161 166 l-53\n28 -665 2 c-366 1 -676 -2 -690 -6z m1355 -154 c21 -12 53 -42 70 -65 l30 -44\n3 -346 c2 -243 0 -359 -8 -387 -16 -55 -53 -101 -100 -125 -38 -19 -60 -20\n-673 -20 l-634 0 -44 23 c-29 16 -54 40 -74 72 l-30 48 0 362 0 362 30 48 c20\n32 45 56 74 72 l44 23 636 0 636 0 40 -23z\"/>\n<path d=\"M3559 2921 l-24 -19 0 -337 0 -337 25 -20 c16 -13 33 -18 50 -15 32\n7 561 312 578 334 19 26 14 62 -10 84 -36 31 -559 329 -578 329 -10 0 -28 -9\n-41 -19z m270 -264 c79 -46 143 -87 142 -93 0 -9 -278 -174 -293 -174 -5 0 -8\n79 -8 175 0 96 3 175 8 175 4 0 72 -37 151 -83z\"/>\n<path d=\"M2038 2943 c-35 -42 -27 -91 19 -112 33 -15 423 -15 457 0 13 7 30\n25 37 41 10 25 9 33 -8 56 l-20 27 -235 3 c-214 2 -236 1 -250 -15z\"/>\n<path d=\"M1991 2634 c-12 -15 -21 -36 -21 -47 0 -28 179 -207 207 -207 35 0\n73 38 73 73 0 25 -15 46 -88 119 -73 73 -94 88 -119 88 -22 0 -38 -8 -52 -26z\"/>\n<path d=\"M912 1334 c-22 -15 -30 -66 -14 -90 22 -33 48 -34 822 -34 l771 0 24\n25 c31 30 32 65 2 93 l-23 22 -780 0 c-689 0 -782 -2 -802 -16z\"/>\n<path d=\"M2780 1330 c-29 -29 -26 -74 6 -99 21 -17 41 -21 96 -21 97 0 128 18\n128 76 0 51 -24 64 -123 64 -74 0 -90 -3 -107 -20z\"/>\n</g>\n</svg>\n                <h3>Healthcare Paid Media Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/influencer.svg\"  alt=\"Healthcare Influencer Marketing\">\n                <h3>Healthcare Influencer Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/reputation-management.svg\"  alt=\"Healthcare Online Reputation Management\">\n                <h3>Healthcare Online Reputation Management</h3>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://health.ideascloud.in/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Upliftment Of Your Brand</h2>		\n		<p>Bring to us what troubles you and let us find the solution for you.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://health.ideascloud.in/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://health.ideascloud.in/hello-world/\">\n        </a>\n                    <a href=\"https://health.ideascloud.in/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://health.ideascloud.in/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://health.ideascloud.in/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-19 10:12:38','2023-07-19 04:42:38','',156,'https://health.ideascloud.in/?p=271',0,'revision','',0),(272,1,'2023-07-19 10:12:39','2023-07-19 04:42:39','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://health.ideascloud.in/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n															<img width=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Healthcare Digital Marketing Services, A Brand Requires</h2>		\n                <h3>Healthcare Website Design</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M805 5109 c-356 -82 -641 -342 -748 -684 -113 -360 -12 -757 259\n-1015 90 -85 155 -131 267 -186 58 -29 76 -42 71 -54 -3 -8 -16 -56 -29 -107\n-43 -165 -58 -295 -58 -493 0 -205 15 -325 62 -505 16 -60 28 -111 28 -111 -1\n-1 -40 -20 -87 -44 -270 -134 -463 -378 -537 -678 -12 -47 -17 -112 -17 -217\n-1 -126 3 -164 23 -240 32 -124 73 -212 106 -227 34 -15 75 -1 95 34 13 25 13\n32 -4 75 -100 258 -100 489 3 708 115 246 308 407 572 476 164 43 384 25 543\n-46 192 -85 358 -251 442 -442 65 -147 87 -375 50 -526 -63 -264 -233 -473\n-478 -586 -129 -60 -201 -75 -358 -75 -110 0 -150 4 -215 22 -108 31 -226 90\n-309 157 -79 62 -120 71 -156 33 -44 -48 -22 -89 95 -176 178 -132 416 -202\n644 -189 362 21 678 231 841 557 24 47 43 86 44 87 0 1 51 -12 112 -27 311\n-80 686 -82 991 -5 53 14 104 27 113 30 14 4 23 -7 41 -52 74 -184 273 -389\n474 -490 559 -282 1255 41 1411 655 33 130 35 357 3 482 -74 290 -255 519\n-520 655 -52 26 -95 49 -96 49 -1 1 8 41 22 88 91 334 90 744 -5 1072 -11 38\n-19 70 -17 71 1 1 40 21 86 44 263 130 454 366 527 650 35 135 35 357 0 493\n-85 335 -338 602 -676 714 -82 28 -91 29 -295 29 -204 0 -212 -1 -295 -29\n-211 -71 -374 -186 -508 -360 -38 -49 -117 -188 -133 -233 -3 -8 -37 -2 -114\n18 -180 47 -300 62 -505 62 -198 0 -328 -15 -493 -58 -51 -13 -99 -26 -107\n-29 -11 -5 -25 15 -55 76 -128 265 -369 461 -659 537 -66 17 -108 21 -245 20\n-91 -1 -184 -5 -206 -10z m415 -154 c258 -68 478 -257 579 -500 48 -114 64\n-196 64 -325 0 -187 -48 -342 -153 -494 -55 -80 -63 -121 -30 -151 26 -24 74\n-23 101 1 35 31 99 131 140 218 76 163 109 350 90 518 -6 54 -11 102 -11 107\n0 23 244 75 429 92 201 17 456 -8 658 -67 l55 -16 -6 -39 c-54 -335 59 -673\n299 -898 226 -211 522 -306 836 -268 l66 8 22 -80 c86 -318 86 -659 -1 -984\nl-20 -78 -72 8 c-379 42 -727 -104 -945 -397 -104 -139 -161 -282 -188 -465\n-14 -93 -15 -128 -5 -224 6 -63 10 -116 8 -118 -9 -9 -208 -54 -302 -68 -139\n-21 -388 -21 -530 0 -95 14 -291 59 -301 69 -2 2 1 51 7 108 32 296 -74 594\n-289 809 -223 222 -520 323 -848 286 l-71 -8 -16 55 c-59 201 -84 456 -67 658\n17 193 69 428 94 428 7 0 53 -5 102 -11 167 -19 383 20 535 96 93 47 115 92\n68 142 -29 31 -48 29 -153 -16 -153 -66 -302 -89 -450 -71 -175 21 -346 100\n-475 218 -250 228 -341 579 -234 901 43 129 98 215 209 326 137 137 278 213\n457 244 75 14 271 6 348 -14z m3123 -4 c191 -50 374 -180 486 -344 47 -68 106\n-200 127 -282 26 -103 24 -303 -4 -410 -137 -512 -699 -782 -1178 -565 -231\n104 -409 316 -476 565 -28 108 -30 308 -3 410 69 267 262 492 507 592 160 65\n373 79 541 34z m-30 -3106 c299 -61 555 -311 639 -620 33 -123 30 -319 -6\n-438 -131 -434 -544 -693 -977 -611 -318 60 -568 290 -665 611 -23 77 -27 106\n-27 223 0 159 20 248 82 375 177 359 555 541 954 460z\"/>\n<path d=\"M1082 4564 c-64 -24 -137 -102 -159 -170 -17 -55 -18 -56 -50 -51\n-59 10 -137 58 -211 129 -63 62 -75 69 -100 64 -59 -14 -91 -96 -99 -252 -8\n-155 26 -252 124 -355 l54 -56 -32 -7 c-18 -3 -63 -9 -101 -13 -77 -7 -98 -24\n-98 -79 0 -38 19 -56 95 -90 98 -43 198 -64 304 -64 192 0 329 56 456 184 122\n123 176 239 195 423 8 70 15 100 34 128 36 53 67 142 60 171 -8 29 -40 54 -71\n54 -13 0 -45 -12 -71 -27 l-48 -27 -50 24 c-62 31 -169 37 -232 14z m186 -164\nc45 -32 47 -41 43 -145 -9 -225 -149 -407 -360 -469 -67 -20 -177 -22 -147 -3\n45 27 66 56 66 90 0 39 -13 52 -88 92 -106 57 -163 147 -170 269 l-5 79 34\n-25 c53 -40 114 -68 196 -89 164 -41 223 -16 223 97 0 118 112 174 208 104z\"/>\n<path d=\"M3067 3330 c-18 -14 -27 -32 -29 -57 -3 -36 -5 -38 -114 -94 -193\n-98 -483 -198 -515 -178 -8 5 -104 9 -214 9 -225 0 -250 -6 -292 -69 -22 -33\n-23 -41 -23 -275 0 -223 2 -243 20 -274 29 -47 75 -72 137 -72 28 0 54 -3 56\n-7 3 -5 10 -120 17 -258 10 -210 14 -254 29 -275 25 -35 82 -39 112 -9 24 24\n24 15 2 425 l-6 121 104 5 c89 5 115 2 184 -18 100 -29 116 -30 143 -1 27 29\n29 78 4 101 -18 16 -95 44 -179 66 l-43 11 0 183 0 182 97 28 c131 37 270 90\n375 142 48 24 92 44 98 44 7 0 10 -135 10 -399 l0 -400 -64 30 c-71 33 -106\n32 -131 -4 -38 -54 -12 -92 105 -153 85 -45 90 -49 90 -80 0 -64 71 -96 121\n-55 l24 19 3 624 c1 342 0 633 -3 646 -8 32 -41 62 -69 62 -13 0 -35 -9 -49\n-20z m-757 -665 l0 -195 -140 0 -140 0 0 195 0 195 140 0 140 0 0 -195z\"/>\n<path d=\"M4189 4696 c-78 -21 -144 -80 -180 -160 -17 -40 -23 -75 -27 -183\nl-5 -133 -59 0 c-53 0 -63 -3 -90 -30 -24 -25 -29 -36 -24 -58 11 -46 41 -62\n111 -62 l64 0 3 -239 c3 -218 5 -241 22 -260 24 -27 86 -29 109 -3 14 16 17\n52 19 258 l3 239 77 5 c88 6 109 19 110 70 1 25 -6 40 -26 57 -23 19 -38 23\n-98 23 l-70 0 4 125 c3 105 7 129 24 152 32 44 80 63 157 63 38 0 77 5 88 11\n48 25 44 105 -7 128 -32 14 -146 13 -205 -3z\"/>\n<path d=\"M3715 1526 c-38 -16 -102 -87 -112 -123 -5 -16 -8 -194 -8 -398 l0\n-370 25 -45 c28 -49 73 -84 129 -100 48 -13 704 -13 752 0 56 16 101 51 129\n100 l25 45 0 380 c0 416 1 406 -62 469 -54 55 -60 56 -470 56 -289 -1 -385 -4\n-408 -14z m780 -160 c14 -20 15 -69 13 -366 -3 -325 -4 -342 -22 -356 -29 -21\n-693 -21 -722 0 -18 14 -19 31 -22 356 -2 297 -1 346 13 366 l15 24 355 0 355\n0 15 -24z\"/>\n<path d=\"M4046 1225 c-125 -44 -181 -195 -118 -316 83 -160 311 -160 394 0 96\n184 -80 386 -276 316z m129 -160 c70 -69 -30 -170 -102 -103 -14 13 -23 33\n-23 50 0 36 40 78 75 78 14 0 37 -11 50 -25z\"/>\n<path d=\"M791 1406 c-49 -27 -50 -39 -51 -379 0 -338 3 -362 49 -387 51 -27\n82 -14 361 146 162 93 278 166 288 181 20 32 21 83 0 114 -23 35 -557 339\n-594 339 -16 -1 -40 -7 -53 -14z m296 -282 c93 -53 169 -98 171 -99 1 -1 -71\n-44 -160 -95 -90 -52 -173 -100 -185 -108 l-23 -14 0 212 c0 183 2 211 15 206\n8 -3 90 -49 182 -102z\"/>\n</g>\n</svg>\n                <h3>Healthcare Social Media Management</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M2567 4629 c-286 -42 -582 -177 -796 -363 l-65 -56 -362 0 c-361 0\n-363 0 -384 -22 -39 -42 -19 -101 41 -118 19 -6 154 -10 301 -10 l267 0 -47\n-64 c-26 -35 -51 -71 -57 -80 -9 -15 -66 -16 -662 -10 l-653 7 0 79 0 78 275\n0 c269 0 275 0 295 22 41 44 13 111 -52 123 -18 4 -154 5 -303 3 -302 -3 -318\n-7 -349 -72 -15 -31 -16 -161 -16 -1456 0 -1295 1 -1425 16 -1456 31 -66 16\n-64 617 -64 532 0 544 0 562 20 25 28 23 76 -4 103 -22 22 -22 22 -531 25\nl-510 3 0 1221 0 1220 607 -7 c335 -4 609 -9 611 -10 2 -2 -4 -18 -13 -35 -9\n-18 -34 -85 -55 -149 l-38 -116 -384 -2 c-270 -2 -390 -6 -405 -15 -13 -6 -27\n-27 -33 -47 -13 -46 -13 -585 0 -630 17 -62 7 -60 436 -61 l390 0 29 -92 c16\n-51 31 -99 33 -105 3 -10 -87 -13 -427 -13 -430 0 -430 0 -451 -22 -37 -40\n-21 -97 34 -118 17 -6 190 -10 476 -10 l449 0 17 -33 c9 -17 34 -58 55 -89 22\n-31 39 -62 39 -67 0 -8 -163 -11 -525 -11 l-524 0 -21 -22 c-37 -40 -21 -97\n34 -118 18 -6 229 -10 603 -10 l575 0 75 -70 c93 -87 255 -196 376 -254 429\n-205 921 -206 1350 -4 l107 51 93 -90 c106 -104 138 -118 210 -89 l42 16 115\n-115 115 -116 -1343 3 -1344 3 -19 -24 c-23 -28 -24 -69 -3 -99 15 -21 21 -22\n193 -22 98 0 180 -2 183 -5 2 -3 -9 -56 -26 -119 l-30 -113 -101 -6 c-56 -4\n-120 -13 -143 -21 -95 -34 -174 -113 -207 -207 -22 -60 -20 -181 3 -202 15\n-13 130 -16 1049 -19 980 -3 1032 -2 1051 15 26 24 33 62 22 136 -11 80 -41\n140 -96 195 -71 72 -120 90 -253 96 l-114 5 -32 117 c-18 65 -30 120 -27 123\n3 3 316 2 696 -1 l691 -7 185 -181 c107 -106 202 -190 225 -201 60 -29 180\n-32 237 -7 144 63 212 222 157 367 -20 53 -42 80 -201 241 l-178 181 0 1277\nc0 1162 -1 1281 -16 1312 -30 64 -33 64 -447 64 l-375 0 -73 62 c-220 184\n-487 306 -774 353 -98 16 -369 18 -468 4z m458 -154 c208 -34 427 -124 598\n-245 286 -205 494 -528 563 -877 13 -66 22 -88 42 -103 31 -25 63 -25 93 -1\n20 16 24 27 22 68 -3 68 -47 230 -92 340 l-39 93 179 0 179 0 0 -1022 0 -1023\n-124 124 -125 124 15 28 c18 36 18 92 0 127 -8 15 -50 62 -94 106 l-80 78 44\n92 c23 50 59 139 78 197 34 101 76 307 76 372 0 42 -35 77 -75 77 -51 0 -66\n-26 -85 -152 -51 -335 -188 -599 -429 -830 -229 -220 -517 -355 -830 -389\n-647 -70 -1271 325 -1490 944 -291 825 241 1726 1104 1871 110 19 359 19 470\n1z m1545 -495 l0 -80 -221 2 -221 3 -54 78 -55 77 276 0 275 0 0 -80z m-3345\n-887 c0 -109 3 -210 8 -225 l7 -28 -325 0 -325 0 0 225 0 225 318 0 317 0 0\n-197z m2918 -991 l57 -57 -190 -190 -190 -190 -60 60 -60 60 93 76 c87 72 188\n176 251 262 16 20 31 37 35 37 4 0 32 -26 64 -58z m439 -629 c201 -203 371\n-378 377 -390 26 -51 1 -131 -51 -163 -21 -13 -51 -20 -83 -20 l-49 0 -378\n377 -378 378 92 92 c51 51 95 93 98 93 3 0 170 -165 372 -367z m-1811 -401\nc15 -51 30 -104 33 -117 l6 -25 -450 0 c-425 0 -451 1 -446 18 3 9 17 60 31\n112 15 52 29 98 31 102 3 5 177 7 387 6 l382 -3 26 -93z m406 -315 c44 -23\n103 -94 103 -124 0 -7 -1830 -5 -1838 2 -2 2 3 16 12 33 19 37 79 90 109 96\n12 3 31 7 42 10 11 3 363 3 782 1 646 -3 766 -6 790 -18z\"/>\n<path d=\"M2685 4339 c-292 -24 -555 -143 -766 -346 -197 -190 -319 -408 -376\n-675 -25 -116 -25 -371 0 -488 64 -299 224 -566 445 -742 49 -39 82 -58 101\n-58 37 0 71 38 71 78 0 27 -12 41 -85 103 -184 154 -307 352 -372 596 -23 88\n-26 116 -26 268 0 151 3 181 25 266 36 132 78 229 147 336 230 355 621 547\n1042 512 518 -44 942 -447 1014 -964 12 -85 7 -276 -10 -363 -43 -226 -165\n-446 -335 -606 -290 -273 -694 -370 -1083 -260 -80 22 -90 23 -116 10 -47 -25\n-55 -70 -18 -110 16 -19 48 -32 114 -50 445 -117 890 -2 1219 316 194 188 319\n421 369 688 21 111 21 328 0 445 -69 390 -324 733 -678 911 -212 107 -444 152\n-682 133z\"/>\n<path d=\"M2025 3407 c-57 -19 -91 -44 -116 -84 -30 -49 -40 -101 -28 -149 18\n-71 63 -105 205 -159 65 -24 114 -58 114 -77 0 -5 -11 -20 -25 -33 -44 -45\n-134 -31 -209 32 -49 41 -116 10 -116 -55 0 -76 130 -152 258 -152 83 0 134\n22 184 78 48 53 65 111 49 171 -23 86 -70 125 -218 182 -104 40 -113 50 -80\n83 34 34 68 33 146 -5 56 -27 66 -29 92 -18 54 22 64 70 24 117 -52 62 -195\n97 -280 69z\"/>\n<path d=\"M2580 3413 c-51 -20 -50 -15 -50 -338 l0 -302 23 -21 c22 -20 33 -22\n163 -22 134 0 142 1 162 23 31 33 29 80 -4 106 -22 17 -41 21 -110 21 l-84 0\n0 60 0 60 79 0 c88 0 115 14 127 62 5 22 0 33 -24 58 -29 28 -35 30 -106 30\nl-76 0 0 60 0 60 90 0 c77 0 93 3 110 20 25 25 26 71 1 101 -18 23 -26 24\n-153 26 -73 1 -140 0 -148 -4z\"/>\n<path d=\"M3329 3406 c-102 -27 -181 -95 -228 -196 -22 -46 -26 -69 -26 -140 0\n-72 4 -93 27 -140 35 -72 99 -136 168 -169 47 -22 68 -26 150 -26 89 0 99 2\n158 34 67 36 114 86 153 161 33 63 35 212 3 281 -44 95 -131 168 -231 194 -68\n18 -112 18 -174 1z m143 -146 c155 -44 187 -257 52 -350 -66 -45 -172 -39\n-231 13 -71 62 -91 153 -52 234 43 89 135 129 231 103z\"/>\n<path d=\"M450 1758 c-41 -44 -13 -111 52 -123 18 -3 180 -5 359 -3 305 3 328\n4 348 22 27 25 29 86 3 109 -17 15 -58 17 -380 17 -359 0 -361 0 -382 -22z\"/>\n</g>\n</svg>\n                <h3>Healthcare Search Engine Optimization</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M3620 4984 c-241 -52 -449 -222 -549 -449 -26 -60 -61 -197 -61 -242\nl0 -33 -1235 0 c-1222 0 -1235 0 -1255 -20 -19 -19 -20 -33 -20 -509 l0 -489\n-119 -4 c-109 -4 -124 -7 -184 -36 -76 -38 -129 -92 -166 -171 -22 -47 -26\n-69 -26 -141 1 -71 5 -94 28 -141 50 -104 158 -183 267 -196 l49 -6 3 -239 c3\n-238 3 -240 27 -259 16 -13 39 -19 72 -19 l49 0 0 -462 0 -463 24 -50 c29 -60\n76 -107 136 -134 44 -20 63 -21 773 -21 l727 0 0 -165 0 -165 -104 0 c-187 0\n-260 -27 -313 -117 -26 -44 -28 -58 -32 -166 -3 -112 -2 -120 20 -143 l22 -24\n1058 0 1058 0 21 28 c20 25 22 36 18 142 -3 105 -6 119 -31 163 -53 90 -126\n117 -313 117 l-104 0 0 165 0 165 738 2 c697 3 739 4 772 22 49 26 98 74 123\n121 l22 40 3 1564 2 1564 -22 24 c-21 23 -22 23 -285 23 l-263 0 0 29 c0 16\n-7 62 -15 102 -63 296 -300 532 -597 593 -93 19 -230 19 -318 0z m353 -153\nc213 -75 373 -247 422 -452 68 -289 -74 -588 -341 -718 -168 -82 -380 -82\n-548 0 -219 107 -356 326 -356 569 0 288 191 534 473 611 95 25 264 21 350\n-10z m-940 -789 c59 -265 286 -491 562 -562 107 -27 264 -27 371 0 260 67 463\n255 548 512 14 42 26 88 26 102 l0 26 220 0 220 0 0 -1225 0 -1225 -2170 0\n-2170 0 0 180 0 180 50 0 c37 0 55 5 70 20 19 19 20 33 20 233 0 118 2 216 5\n219 3 3 123 -46 265 -110 l260 -115 0 -66 c0 -111 53 -185 154 -212 94 -26\n210 45 234 143 7 28 12 128 12 251 l0 203 51 24 c179 80 236 315 112 459 -41\n48 -117 101 -144 101 -16 0 -18 20 -21 233 -3 219 -4 234 -26 274 -58 110\n-212 138 -303 56 -55 -50 -62 -66 -69 -157 l-5 -78 -300 -134 c-181 -81 -313\n-134 -332 -134 l-33 0 0 440 0 440 1188 0 1187 0 18 -78z m-1479 -414 c14 -20\n16 -106 16 -736 l0 -713 -25 -24 c-28 -29 -42 -31 -73 -9 l-22 15 0 729 c0\n649 2 730 16 744 23 24 70 20 88 -6z m-244 -733 c0 -309 -3 -455 -10 -455 -13\n0 -490 210 -508 223 -9 8 -12 62 -10 235 l3 225 250 113 c138 61 256 112 263\n113 9 1 12 -96 12 -454z m-670 -1 l0 -205 -183 3 c-184 3 -184 3 -225 32 -50\n34 -92 112 -92 170 1 81 60 164 136 191 27 10 90 14 202 15 l162 0 0 -206z\nm1141 73 c37 -67 11 -174 -52 -207 -18 -10 -19 -6 -19 135 l0 146 24 -18 c14\n-10 34 -35 47 -56z m-1141 -607 l0 -190 -75 0 -75 0 0 183 c0 101 3 187 7 190\n3 4 37 7 75 7 l68 0 0 -190z m4340 -1026 c0 -216 -6 -246 -59 -277 -27 -16\n-167 -17 -2111 -17 -1909 0 -2084 1 -2110 16 -56 33 -60 53 -60 273 l0 201\n2170 0 2170 0 0 -196z m-1660 -599 l0 -165 -510 0 -510 0 0 165 0 165 510 0\n510 0 0 -165z m395 -320 c40 -16 55 -46 55 -111 l0 -44 -960 0 -960 0 0 51 c0\n62 12 87 53 104 49 22 1762 22 1812 0z\"/>\n<path d=\"M3730 4758 c-13 -14 -20 -36 -20 -62 -1 -39 -4 -43 -53 -71 -168 -96\n-168 -334 0 -430 l52 -30 0 -100 0 -100 -19 24 c-11 13 -20 36 -20 53 0 33\n-39 78 -68 78 -11 0 -32 -10 -47 -22 -25 -20 -27 -25 -22 -73 9 -92 66 -172\n145 -204 29 -12 32 -17 32 -57 0 -53 26 -84 70 -84 44 0 70 31 70 84 0 39 3\n45 28 54 46 16 103 73 128 127 57 121 6 268 -111 325 l-45 22 0 101 1 102 19\n-24 c11 -13 20 -36 20 -53 0 -35 40 -78 73 -78 13 0 33 10 45 23 61 65 -15\n230 -126 276 -29 12 -32 17 -32 57 0 76 -72 113 -120 62z m-20 -350 c0 -78 -1\n-81 -17 -65 -22 22 -24 106 -4 130 7 10 15 17 17 17 2 0 4 -37 4 -82z m177\n-350 c4 -34 1 -49 -16 -68 l-20 -25 -1 85 c0 77 1 83 16 68 9 -9 18 -36 21\n-60z\"/>\n<path d=\"M2062 3286 c-100 -101 -108 -121 -67 -161 40 -41 60 -33 161 67 102\n99 114 128 74 168 -40 40 -69 28 -168 -74z\"/>\n<path d=\"M3120 3201 c-95 -30 -191 -120 -225 -212 -19 -50 -20 -79 -20 -424 0\n-345 1 -374 20 -424 25 -68 101 -153 169 -189 l51 -27 680 0 680 0 53 28 c70\n37 128 97 161 166 l26 56 0 390 0 390 -26 56 c-33 69 -91 129 -161 166 l-53\n28 -665 2 c-366 1 -676 -2 -690 -6z m1355 -154 c21 -12 53 -42 70 -65 l30 -44\n3 -346 c2 -243 0 -359 -8 -387 -16 -55 -53 -101 -100 -125 -38 -19 -60 -20\n-673 -20 l-634 0 -44 23 c-29 16 -54 40 -74 72 l-30 48 0 362 0 362 30 48 c20\n32 45 56 74 72 l44 23 636 0 636 0 40 -23z\"/>\n<path d=\"M3559 2921 l-24 -19 0 -337 0 -337 25 -20 c16 -13 33 -18 50 -15 32\n7 561 312 578 334 19 26 14 62 -10 84 -36 31 -559 329 -578 329 -10 0 -28 -9\n-41 -19z m270 -264 c79 -46 143 -87 142 -93 0 -9 -278 -174 -293 -174 -5 0 -8\n79 -8 175 0 96 3 175 8 175 4 0 72 -37 151 -83z\"/>\n<path d=\"M2038 2943 c-35 -42 -27 -91 19 -112 33 -15 423 -15 457 0 13 7 30\n25 37 41 10 25 9 33 -8 56 l-20 27 -235 3 c-214 2 -236 1 -250 -15z\"/>\n<path d=\"M1991 2634 c-12 -15 -21 -36 -21 -47 0 -28 179 -207 207 -207 35 0\n73 38 73 73 0 25 -15 46 -88 119 -73 73 -94 88 -119 88 -22 0 -38 -8 -52 -26z\"/>\n<path d=\"M912 1334 c-22 -15 -30 -66 -14 -90 22 -33 48 -34 822 -34 l771 0 24\n25 c31 30 32 65 2 93 l-23 22 -780 0 c-689 0 -782 -2 -802 -16z\"/>\n<path d=\"M2780 1330 c-29 -29 -26 -74 6 -99 21 -17 41 -21 96 -21 97 0 128 18\n128 76 0 51 -24 64 -123 64 -74 0 -90 -3 -107 -20z\"/>\n</g>\n</svg>\n                <h3>Healthcare Paid Media Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/influencer.svg\"  alt=\"Healthcare Influencer Marketing\">\n                <h3>Healthcare Influencer Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/reputation-management.svg\"  alt=\"Healthcare Online Reputation Management\">\n                <h3>Healthcare Online Reputation Management</h3>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://health.ideascloud.in/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Upliftment Of Your Brand</h2>		\n		<p>Bring to us what troubles you and let us find the solution for you.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://health.ideascloud.in/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://health.ideascloud.in/hello-world/\">\n        </a>\n                    <a href=\"https://health.ideascloud.in/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://health.ideascloud.in/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://health.ideascloud.in/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-19 10:12:39','2023-07-19 04:42:39','',156,'https://health.ideascloud.in/?p=272',0,'revision','',0),(273,1,'2023-07-19 10:12:40','2023-07-19 04:42:40','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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><h1>Your Healthcare Digital Marketing Agency</h1>		\n		<p>Boost your online presence, engage patients, and drive healthcare leads with our expert digital marketing strategies and solutions</p>		\n			<a href=\"#form\">\n						Contact Us\n					</a>\n			<h2>Unlock Your Healthcare Organization\'s Digital Potential With Our Expert-Led, Tailored Strategies.</h2>		\n		<p>From innovative campaigns to data-driven insights, we deliver targeted digital solutions to optimize your healthcare organization\'s online success.</p>		\n                <h3>Digital Marketing</h3><p>drive more appointments, boost hospital online exposure, and increase patient engagement.</p>\n                <h3>Website Design</h3><p>Improve patient satisfaction and trust with expertly designed healthcare websites.</p>\n                <h3>Offline Marketing Solutions</h3><p>Expands reach, builds trust, and attracts patients effectively.</p>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp\" alt=\"About Us\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/About-Us-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n			<h5>About Mindary</h5>		\n			<h2>Elevate Your Healthcare Brand Online, Reach New Heights of Success</h2>		\n		<p>We help to gain a competitive edge in the digital landscape with our comprehensive healthcare marketing solutions. The basic steps to achieve the goal can be comprised in three steps:</p>		\n			<link rel=\"stylesheet\" href=\"https://health.ideascloud.in/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										Amplify Your Online Presence\n									</li>\n								<li>\n										Engage and Delight Patients\n									</li>\n								<li>\n										Achieve Unprecedented Success\n									</li>\n						</ul>\n			<a href=\"#\">\n						More About Us\n					</a>\n		<!----------------------------- \n			* controls_data : find the the props passed indie of data attribute\n			* props.SubmitResponseMarkup : contains the markup of error or success message\n			* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Template_literals\n		--------------------------- -->\n			&nbsp;		\n			<h5>Healthcare Market Revenue</h5>		\n			<h2>Facts That Show How Rapidly And Vast Healthcare Sector Is Growing</h2>		\n					<ul>\n							<li>\n										The digital healthcare segment demonstrated a notable market share of 13.00% in FY 2021 and is anticipated to increase by 4.44% by FY 2027.\n									</li>\n								<li>\n										Being cost competitive compared to its peers in Asia and western countries. The cost of surgery in India is about one-tenth of that in the US or Western Europe.\n									</li>\n								<li>\n										As of 2021, the Indian healthcare sector is one of India’s largest employers as it employs a total of 4.7 million people. \n									</li>\n						</ul>\n															<img width=\"810\" height=\"810\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Facts-about-healthcare-sector-768x768.webp 768w\" sizes=\"(max-width: 810px) 100vw, 810px\" />															\n															<img width=\"1080\" height=\"1080\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1.webp 1080w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-1024x1024.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Vesak-Day-1-768x768.webp 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" />															\n			<h5>Smartphone Penetration</h5>		\n			<h2>How Smartphone Penetration Is Creating Opportunities</h2>		\n					<ul>\n							<li>\n										The greater the number of smartphone users, the greater the penetration.\n									</li>\n								<li>\n										The greater the penetration, higher the chances to reach out to more and more people.\n									</li>\n								<li>\n										The greater penetration helps to create the Brand Imagery and let the people know about your services.\n									</li>\n						</ul>\n			<a href=\"#form\">\n						Go Digital\n					</a>\n			<h5>What We Offer</h5>		\n			<h2>Healthcare Digital Marketing Services, A Brand Requires</h2>		\n                <h3>Healthcare Website Design</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M805 5109 c-356 -82 -641 -342 -748 -684 -113 -360 -12 -757 259\n-1015 90 -85 155 -131 267 -186 58 -29 76 -42 71 -54 -3 -8 -16 -56 -29 -107\n-43 -165 -58 -295 -58 -493 0 -205 15 -325 62 -505 16 -60 28 -111 28 -111 -1\n-1 -40 -20 -87 -44 -270 -134 -463 -378 -537 -678 -12 -47 -17 -112 -17 -217\n-1 -126 3 -164 23 -240 32 -124 73 -212 106 -227 34 -15 75 -1 95 34 13 25 13\n32 -4 75 -100 258 -100 489 3 708 115 246 308 407 572 476 164 43 384 25 543\n-46 192 -85 358 -251 442 -442 65 -147 87 -375 50 -526 -63 -264 -233 -473\n-478 -586 -129 -60 -201 -75 -358 -75 -110 0 -150 4 -215 22 -108 31 -226 90\n-309 157 -79 62 -120 71 -156 33 -44 -48 -22 -89 95 -176 178 -132 416 -202\n644 -189 362 21 678 231 841 557 24 47 43 86 44 87 0 1 51 -12 112 -27 311\n-80 686 -82 991 -5 53 14 104 27 113 30 14 4 23 -7 41 -52 74 -184 273 -389\n474 -490 559 -282 1255 41 1411 655 33 130 35 357 3 482 -74 290 -255 519\n-520 655 -52 26 -95 49 -96 49 -1 1 8 41 22 88 91 334 90 744 -5 1072 -11 38\n-19 70 -17 71 1 1 40 21 86 44 263 130 454 366 527 650 35 135 35 357 0 493\n-85 335 -338 602 -676 714 -82 28 -91 29 -295 29 -204 0 -212 -1 -295 -29\n-211 -71 -374 -186 -508 -360 -38 -49 -117 -188 -133 -233 -3 -8 -37 -2 -114\n18 -180 47 -300 62 -505 62 -198 0 -328 -15 -493 -58 -51 -13 -99 -26 -107\n-29 -11 -5 -25 15 -55 76 -128 265 -369 461 -659 537 -66 17 -108 21 -245 20\n-91 -1 -184 -5 -206 -10z m415 -154 c258 -68 478 -257 579 -500 48 -114 64\n-196 64 -325 0 -187 -48 -342 -153 -494 -55 -80 -63 -121 -30 -151 26 -24 74\n-23 101 1 35 31 99 131 140 218 76 163 109 350 90 518 -6 54 -11 102 -11 107\n0 23 244 75 429 92 201 17 456 -8 658 -67 l55 -16 -6 -39 c-54 -335 59 -673\n299 -898 226 -211 522 -306 836 -268 l66 8 22 -80 c86 -318 86 -659 -1 -984\nl-20 -78 -72 8 c-379 42 -727 -104 -945 -397 -104 -139 -161 -282 -188 -465\n-14 -93 -15 -128 -5 -224 6 -63 10 -116 8 -118 -9 -9 -208 -54 -302 -68 -139\n-21 -388 -21 -530 0 -95 14 -291 59 -301 69 -2 2 1 51 7 108 32 296 -74 594\n-289 809 -223 222 -520 323 -848 286 l-71 -8 -16 55 c-59 201 -84 456 -67 658\n17 193 69 428 94 428 7 0 53 -5 102 -11 167 -19 383 20 535 96 93 47 115 92\n68 142 -29 31 -48 29 -153 -16 -153 -66 -302 -89 -450 -71 -175 21 -346 100\n-475 218 -250 228 -341 579 -234 901 43 129 98 215 209 326 137 137 278 213\n457 244 75 14 271 6 348 -14z m3123 -4 c191 -50 374 -180 486 -344 47 -68 106\n-200 127 -282 26 -103 24 -303 -4 -410 -137 -512 -699 -782 -1178 -565 -231\n104 -409 316 -476 565 -28 108 -30 308 -3 410 69 267 262 492 507 592 160 65\n373 79 541 34z m-30 -3106 c299 -61 555 -311 639 -620 33 -123 30 -319 -6\n-438 -131 -434 -544 -693 -977 -611 -318 60 -568 290 -665 611 -23 77 -27 106\n-27 223 0 159 20 248 82 375 177 359 555 541 954 460z\"/>\n<path d=\"M1082 4564 c-64 -24 -137 -102 -159 -170 -17 -55 -18 -56 -50 -51\n-59 10 -137 58 -211 129 -63 62 -75 69 -100 64 -59 -14 -91 -96 -99 -252 -8\n-155 26 -252 124 -355 l54 -56 -32 -7 c-18 -3 -63 -9 -101 -13 -77 -7 -98 -24\n-98 -79 0 -38 19 -56 95 -90 98 -43 198 -64 304 -64 192 0 329 56 456 184 122\n123 176 239 195 423 8 70 15 100 34 128 36 53 67 142 60 171 -8 29 -40 54 -71\n54 -13 0 -45 -12 -71 -27 l-48 -27 -50 24 c-62 31 -169 37 -232 14z m186 -164\nc45 -32 47 -41 43 -145 -9 -225 -149 -407 -360 -469 -67 -20 -177 -22 -147 -3\n45 27 66 56 66 90 0 39 -13 52 -88 92 -106 57 -163 147 -170 269 l-5 79 34\n-25 c53 -40 114 -68 196 -89 164 -41 223 -16 223 97 0 118 112 174 208 104z\"/>\n<path d=\"M3067 3330 c-18 -14 -27 -32 -29 -57 -3 -36 -5 -38 -114 -94 -193\n-98 -483 -198 -515 -178 -8 5 -104 9 -214 9 -225 0 -250 -6 -292 -69 -22 -33\n-23 -41 -23 -275 0 -223 2 -243 20 -274 29 -47 75 -72 137 -72 28 0 54 -3 56\n-7 3 -5 10 -120 17 -258 10 -210 14 -254 29 -275 25 -35 82 -39 112 -9 24 24\n24 15 2 425 l-6 121 104 5 c89 5 115 2 184 -18 100 -29 116 -30 143 -1 27 29\n29 78 4 101 -18 16 -95 44 -179 66 l-43 11 0 183 0 182 97 28 c131 37 270 90\n375 142 48 24 92 44 98 44 7 0 10 -135 10 -399 l0 -400 -64 30 c-71 33 -106\n32 -131 -4 -38 -54 -12 -92 105 -153 85 -45 90 -49 90 -80 0 -64 71 -96 121\n-55 l24 19 3 624 c1 342 0 633 -3 646 -8 32 -41 62 -69 62 -13 0 -35 -9 -49\n-20z m-757 -665 l0 -195 -140 0 -140 0 0 195 0 195 140 0 140 0 0 -195z\"/>\n<path d=\"M4189 4696 c-78 -21 -144 -80 -180 -160 -17 -40 -23 -75 -27 -183\nl-5 -133 -59 0 c-53 0 -63 -3 -90 -30 -24 -25 -29 -36 -24 -58 11 -46 41 -62\n111 -62 l64 0 3 -239 c3 -218 5 -241 22 -260 24 -27 86 -29 109 -3 14 16 17\n52 19 258 l3 239 77 5 c88 6 109 19 110 70 1 25 -6 40 -26 57 -23 19 -38 23\n-98 23 l-70 0 4 125 c3 105 7 129 24 152 32 44 80 63 157 63 38 0 77 5 88 11\n48 25 44 105 -7 128 -32 14 -146 13 -205 -3z\"/>\n<path d=\"M3715 1526 c-38 -16 -102 -87 -112 -123 -5 -16 -8 -194 -8 -398 l0\n-370 25 -45 c28 -49 73 -84 129 -100 48 -13 704 -13 752 0 56 16 101 51 129\n100 l25 45 0 380 c0 416 1 406 -62 469 -54 55 -60 56 -470 56 -289 -1 -385 -4\n-408 -14z m780 -160 c14 -20 15 -69 13 -366 -3 -325 -4 -342 -22 -356 -29 -21\n-693 -21 -722 0 -18 14 -19 31 -22 356 -2 297 -1 346 13 366 l15 24 355 0 355\n0 15 -24z\"/>\n<path d=\"M4046 1225 c-125 -44 -181 -195 -118 -316 83 -160 311 -160 394 0 96\n184 -80 386 -276 316z m129 -160 c70 -69 -30 -170 -102 -103 -14 13 -23 33\n-23 50 0 36 40 78 75 78 14 0 37 -11 50 -25z\"/>\n<path d=\"M791 1406 c-49 -27 -50 -39 -51 -379 0 -338 3 -362 49 -387 51 -27\n82 -14 361 146 162 93 278 166 288 181 20 32 21 83 0 114 -23 35 -557 339\n-594 339 -16 -1 -40 -7 -53 -14z m296 -282 c93 -53 169 -98 171 -99 1 -1 -71\n-44 -160 -95 -90 -52 -173 -100 -185 -108 l-23 -14 0 212 c0 183 2 211 15 206\n8 -3 90 -49 182 -102z\"/>\n</g>\n</svg>\n                <h3>Healthcare Social Media Management</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M2567 4629 c-286 -42 -582 -177 -796 -363 l-65 -56 -362 0 c-361 0\n-363 0 -384 -22 -39 -42 -19 -101 41 -118 19 -6 154 -10 301 -10 l267 0 -47\n-64 c-26 -35 -51 -71 -57 -80 -9 -15 -66 -16 -662 -10 l-653 7 0 79 0 78 275\n0 c269 0 275 0 295 22 41 44 13 111 -52 123 -18 4 -154 5 -303 3 -302 -3 -318\n-7 -349 -72 -15 -31 -16 -161 -16 -1456 0 -1295 1 -1425 16 -1456 31 -66 16\n-64 617 -64 532 0 544 0 562 20 25 28 23 76 -4 103 -22 22 -22 22 -531 25\nl-510 3 0 1221 0 1220 607 -7 c335 -4 609 -9 611 -10 2 -2 -4 -18 -13 -35 -9\n-18 -34 -85 -55 -149 l-38 -116 -384 -2 c-270 -2 -390 -6 -405 -15 -13 -6 -27\n-27 -33 -47 -13 -46 -13 -585 0 -630 17 -62 7 -60 436 -61 l390 0 29 -92 c16\n-51 31 -99 33 -105 3 -10 -87 -13 -427 -13 -430 0 -430 0 -451 -22 -37 -40\n-21 -97 34 -118 17 -6 190 -10 476 -10 l449 0 17 -33 c9 -17 34 -58 55 -89 22\n-31 39 -62 39 -67 0 -8 -163 -11 -525 -11 l-524 0 -21 -22 c-37 -40 -21 -97\n34 -118 18 -6 229 -10 603 -10 l575 0 75 -70 c93 -87 255 -196 376 -254 429\n-205 921 -206 1350 -4 l107 51 93 -90 c106 -104 138 -118 210 -89 l42 16 115\n-115 115 -116 -1343 3 -1344 3 -19 -24 c-23 -28 -24 -69 -3 -99 15 -21 21 -22\n193 -22 98 0 180 -2 183 -5 2 -3 -9 -56 -26 -119 l-30 -113 -101 -6 c-56 -4\n-120 -13 -143 -21 -95 -34 -174 -113 -207 -207 -22 -60 -20 -181 3 -202 15\n-13 130 -16 1049 -19 980 -3 1032 -2 1051 15 26 24 33 62 22 136 -11 80 -41\n140 -96 195 -71 72 -120 90 -253 96 l-114 5 -32 117 c-18 65 -30 120 -27 123\n3 3 316 2 696 -1 l691 -7 185 -181 c107 -106 202 -190 225 -201 60 -29 180\n-32 237 -7 144 63 212 222 157 367 -20 53 -42 80 -201 241 l-178 181 0 1277\nc0 1162 -1 1281 -16 1312 -30 64 -33 64 -447 64 l-375 0 -73 62 c-220 184\n-487 306 -774 353 -98 16 -369 18 -468 4z m458 -154 c208 -34 427 -124 598\n-245 286 -205 494 -528 563 -877 13 -66 22 -88 42 -103 31 -25 63 -25 93 -1\n20 16 24 27 22 68 -3 68 -47 230 -92 340 l-39 93 179 0 179 0 0 -1022 0 -1023\n-124 124 -125 124 15 28 c18 36 18 92 0 127 -8 15 -50 62 -94 106 l-80 78 44\n92 c23 50 59 139 78 197 34 101 76 307 76 372 0 42 -35 77 -75 77 -51 0 -66\n-26 -85 -152 -51 -335 -188 -599 -429 -830 -229 -220 -517 -355 -830 -389\n-647 -70 -1271 325 -1490 944 -291 825 241 1726 1104 1871 110 19 359 19 470\n1z m1545 -495 l0 -80 -221 2 -221 3 -54 78 -55 77 276 0 275 0 0 -80z m-3345\n-887 c0 -109 3 -210 8 -225 l7 -28 -325 0 -325 0 0 225 0 225 318 0 317 0 0\n-197z m2918 -991 l57 -57 -190 -190 -190 -190 -60 60 -60 60 93 76 c87 72 188\n176 251 262 16 20 31 37 35 37 4 0 32 -26 64 -58z m439 -629 c201 -203 371\n-378 377 -390 26 -51 1 -131 -51 -163 -21 -13 -51 -20 -83 -20 l-49 0 -378\n377 -378 378 92 92 c51 51 95 93 98 93 3 0 170 -165 372 -367z m-1811 -401\nc15 -51 30 -104 33 -117 l6 -25 -450 0 c-425 0 -451 1 -446 18 3 9 17 60 31\n112 15 52 29 98 31 102 3 5 177 7 387 6 l382 -3 26 -93z m406 -315 c44 -23\n103 -94 103 -124 0 -7 -1830 -5 -1838 2 -2 2 3 16 12 33 19 37 79 90 109 96\n12 3 31 7 42 10 11 3 363 3 782 1 646 -3 766 -6 790 -18z\"/>\n<path d=\"M2685 4339 c-292 -24 -555 -143 -766 -346 -197 -190 -319 -408 -376\n-675 -25 -116 -25 -371 0 -488 64 -299 224 -566 445 -742 49 -39 82 -58 101\n-58 37 0 71 38 71 78 0 27 -12 41 -85 103 -184 154 -307 352 -372 596 -23 88\n-26 116 -26 268 0 151 3 181 25 266 36 132 78 229 147 336 230 355 621 547\n1042 512 518 -44 942 -447 1014 -964 12 -85 7 -276 -10 -363 -43 -226 -165\n-446 -335 -606 -290 -273 -694 -370 -1083 -260 -80 22 -90 23 -116 10 -47 -25\n-55 -70 -18 -110 16 -19 48 -32 114 -50 445 -117 890 -2 1219 316 194 188 319\n421 369 688 21 111 21 328 0 445 -69 390 -324 733 -678 911 -212 107 -444 152\n-682 133z\"/>\n<path d=\"M2025 3407 c-57 -19 -91 -44 -116 -84 -30 -49 -40 -101 -28 -149 18\n-71 63 -105 205 -159 65 -24 114 -58 114 -77 0 -5 -11 -20 -25 -33 -44 -45\n-134 -31 -209 32 -49 41 -116 10 -116 -55 0 -76 130 -152 258 -152 83 0 134\n22 184 78 48 53 65 111 49 171 -23 86 -70 125 -218 182 -104 40 -113 50 -80\n83 34 34 68 33 146 -5 56 -27 66 -29 92 -18 54 22 64 70 24 117 -52 62 -195\n97 -280 69z\"/>\n<path d=\"M2580 3413 c-51 -20 -50 -15 -50 -338 l0 -302 23 -21 c22 -20 33 -22\n163 -22 134 0 142 1 162 23 31 33 29 80 -4 106 -22 17 -41 21 -110 21 l-84 0\n0 60 0 60 79 0 c88 0 115 14 127 62 5 22 0 33 -24 58 -29 28 -35 30 -106 30\nl-76 0 0 60 0 60 90 0 c77 0 93 3 110 20 25 25 26 71 1 101 -18 23 -26 24\n-153 26 -73 1 -140 0 -148 -4z\"/>\n<path d=\"M3329 3406 c-102 -27 -181 -95 -228 -196 -22 -46 -26 -69 -26 -140 0\n-72 4 -93 27 -140 35 -72 99 -136 168 -169 47 -22 68 -26 150 -26 89 0 99 2\n158 34 67 36 114 86 153 161 33 63 35 212 3 281 -44 95 -131 168 -231 194 -68\n18 -112 18 -174 1z m143 -146 c155 -44 187 -257 52 -350 -66 -45 -172 -39\n-231 13 -71 62 -91 153 -52 234 43 89 135 129 231 103z\"/>\n<path d=\"M450 1758 c-41 -44 -13 -111 52 -123 18 -3 180 -5 359 -3 305 3 328\n4 348 22 27 25 29 86 3 109 -17 15 -58 17 -380 17 -359 0 -361 0 -382 -22z\"/>\n</g>\n</svg>\n                <h3>Healthcare Search Engine Optimization</h3>\n			<?xml version=\"1.0\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 20010904//EN\"\n \"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd\">\n<svg version=\"1.0\" xmlns=\"http://www.w3.org/2000/svg\"\n width=\"512.000000pt\" height=\"512.000000pt\" viewBox=\"0 0 512.000000 512.000000\"\n preserveAspectRatio=\"xMidYMid meet\">\n<g transform=\"translate(0.000000,512.000000) scale(0.100000,-0.100000)\"\nfill=\"#000000\" stroke=\"none\">\n<path d=\"M3620 4984 c-241 -52 -449 -222 -549 -449 -26 -60 -61 -197 -61 -242\nl0 -33 -1235 0 c-1222 0 -1235 0 -1255 -20 -19 -19 -20 -33 -20 -509 l0 -489\n-119 -4 c-109 -4 -124 -7 -184 -36 -76 -38 -129 -92 -166 -171 -22 -47 -26\n-69 -26 -141 1 -71 5 -94 28 -141 50 -104 158 -183 267 -196 l49 -6 3 -239 c3\n-238 3 -240 27 -259 16 -13 39 -19 72 -19 l49 0 0 -462 0 -463 24 -50 c29 -60\n76 -107 136 -134 44 -20 63 -21 773 -21 l727 0 0 -165 0 -165 -104 0 c-187 0\n-260 -27 -313 -117 -26 -44 -28 -58 -32 -166 -3 -112 -2 -120 20 -143 l22 -24\n1058 0 1058 0 21 28 c20 25 22 36 18 142 -3 105 -6 119 -31 163 -53 90 -126\n117 -313 117 l-104 0 0 165 0 165 738 2 c697 3 739 4 772 22 49 26 98 74 123\n121 l22 40 3 1564 2 1564 -22 24 c-21 23 -22 23 -285 23 l-263 0 0 29 c0 16\n-7 62 -15 102 -63 296 -300 532 -597 593 -93 19 -230 19 -318 0z m353 -153\nc213 -75 373 -247 422 -452 68 -289 -74 -588 -341 -718 -168 -82 -380 -82\n-548 0 -219 107 -356 326 -356 569 0 288 191 534 473 611 95 25 264 21 350\n-10z m-940 -789 c59 -265 286 -491 562 -562 107 -27 264 -27 371 0 260 67 463\n255 548 512 14 42 26 88 26 102 l0 26 220 0 220 0 0 -1225 0 -1225 -2170 0\n-2170 0 0 180 0 180 50 0 c37 0 55 5 70 20 19 19 20 33 20 233 0 118 2 216 5\n219 3 3 123 -46 265 -110 l260 -115 0 -66 c0 -111 53 -185 154 -212 94 -26\n210 45 234 143 7 28 12 128 12 251 l0 203 51 24 c179 80 236 315 112 459 -41\n48 -117 101 -144 101 -16 0 -18 20 -21 233 -3 219 -4 234 -26 274 -58 110\n-212 138 -303 56 -55 -50 -62 -66 -69 -157 l-5 -78 -300 -134 c-181 -81 -313\n-134 -332 -134 l-33 0 0 440 0 440 1188 0 1187 0 18 -78z m-1479 -414 c14 -20\n16 -106 16 -736 l0 -713 -25 -24 c-28 -29 -42 -31 -73 -9 l-22 15 0 729 c0\n649 2 730 16 744 23 24 70 20 88 -6z m-244 -733 c0 -309 -3 -455 -10 -455 -13\n0 -490 210 -508 223 -9 8 -12 62 -10 235 l3 225 250 113 c138 61 256 112 263\n113 9 1 12 -96 12 -454z m-670 -1 l0 -205 -183 3 c-184 3 -184 3 -225 32 -50\n34 -92 112 -92 170 1 81 60 164 136 191 27 10 90 14 202 15 l162 0 0 -206z\nm1141 73 c37 -67 11 -174 -52 -207 -18 -10 -19 -6 -19 135 l0 146 24 -18 c14\n-10 34 -35 47 -56z m-1141 -607 l0 -190 -75 0 -75 0 0 183 c0 101 3 187 7 190\n3 4 37 7 75 7 l68 0 0 -190z m4340 -1026 c0 -216 -6 -246 -59 -277 -27 -16\n-167 -17 -2111 -17 -1909 0 -2084 1 -2110 16 -56 33 -60 53 -60 273 l0 201\n2170 0 2170 0 0 -196z m-1660 -599 l0 -165 -510 0 -510 0 0 165 0 165 510 0\n510 0 0 -165z m395 -320 c40 -16 55 -46 55 -111 l0 -44 -960 0 -960 0 0 51 c0\n62 12 87 53 104 49 22 1762 22 1812 0z\"/>\n<path d=\"M3730 4758 c-13 -14 -20 -36 -20 -62 -1 -39 -4 -43 -53 -71 -168 -96\n-168 -334 0 -430 l52 -30 0 -100 0 -100 -19 24 c-11 13 -20 36 -20 53 0 33\n-39 78 -68 78 -11 0 -32 -10 -47 -22 -25 -20 -27 -25 -22 -73 9 -92 66 -172\n145 -204 29 -12 32 -17 32 -57 0 -53 26 -84 70 -84 44 0 70 31 70 84 0 39 3\n45 28 54 46 16 103 73 128 127 57 121 6 268 -111 325 l-45 22 0 101 1 102 19\n-24 c11 -13 20 -36 20 -53 0 -35 40 -78 73 -78 13 0 33 10 45 23 61 65 -15\n230 -126 276 -29 12 -32 17 -32 57 0 76 -72 113 -120 62z m-20 -350 c0 -78 -1\n-81 -17 -65 -22 22 -24 106 -4 130 7 10 15 17 17 17 2 0 4 -37 4 -82z m177\n-350 c4 -34 1 -49 -16 -68 l-20 -25 -1 85 c0 77 1 83 16 68 9 -9 18 -36 21\n-60z\"/>\n<path d=\"M2062 3286 c-100 -101 -108 -121 -67 -161 40 -41 60 -33 161 67 102\n99 114 128 74 168 -40 40 -69 28 -168 -74z\"/>\n<path d=\"M3120 3201 c-95 -30 -191 -120 -225 -212 -19 -50 -20 -79 -20 -424 0\n-345 1 -374 20 -424 25 -68 101 -153 169 -189 l51 -27 680 0 680 0 53 28 c70\n37 128 97 161 166 l26 56 0 390 0 390 -26 56 c-33 69 -91 129 -161 166 l-53\n28 -665 2 c-366 1 -676 -2 -690 -6z m1355 -154 c21 -12 53 -42 70 -65 l30 -44\n3 -346 c2 -243 0 -359 -8 -387 -16 -55 -53 -101 -100 -125 -38 -19 -60 -20\n-673 -20 l-634 0 -44 23 c-29 16 -54 40 -74 72 l-30 48 0 362 0 362 30 48 c20\n32 45 56 74 72 l44 23 636 0 636 0 40 -23z\"/>\n<path d=\"M3559 2921 l-24 -19 0 -337 0 -337 25 -20 c16 -13 33 -18 50 -15 32\n7 561 312 578 334 19 26 14 62 -10 84 -36 31 -559 329 -578 329 -10 0 -28 -9\n-41 -19z m270 -264 c79 -46 143 -87 142 -93 0 -9 -278 -174 -293 -174 -5 0 -8\n79 -8 175 0 96 3 175 8 175 4 0 72 -37 151 -83z\"/>\n<path d=\"M2038 2943 c-35 -42 -27 -91 19 -112 33 -15 423 -15 457 0 13 7 30\n25 37 41 10 25 9 33 -8 56 l-20 27 -235 3 c-214 2 -236 1 -250 -15z\"/>\n<path d=\"M1991 2634 c-12 -15 -21 -36 -21 -47 0 -28 179 -207 207 -207 35 0\n73 38 73 73 0 25 -15 46 -88 119 -73 73 -94 88 -119 88 -22 0 -38 -8 -52 -26z\"/>\n<path d=\"M912 1334 c-22 -15 -30 -66 -14 -90 22 -33 48 -34 822 -34 l771 0 24\n25 c31 30 32 65 2 93 l-23 22 -780 0 c-689 0 -782 -2 -802 -16z\"/>\n<path d=\"M2780 1330 c-29 -29 -26 -74 6 -99 21 -17 41 -21 96 -21 97 0 128 18\n128 76 0 51 -24 64 -123 64 -74 0 -90 -3 -107 -20z\"/>\n</g>\n</svg>\n                <h3>Healthcare Paid Media Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/influencer.svg\"  alt=\"Healthcare Influencer Marketing\">\n                <h3>Healthcare Influencer Marketing</h3>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/reputation-management.svg\"  alt=\"Healthcare Online Reputation Management\">\n                <h3>Healthcare Online Reputation Management</h3>\n			<h5>PORTRAIT of Healthcare Industry</h5>		\n			<h2>Four Major Pieces Of Long Term Success Of Your Health Care Business</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Strong-Internet-Presence-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Strong Internet Presence</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp\" alt=\"Outstanding Online Reputation\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Outstanding-Online-Reputation-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Outstanding Online Reputation</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp\" alt=\"Solidified Patient Experience\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Solidified-Patient-Experience-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Solidified Patient Experience</h2>		\n															<img width=\"800\" height=\"800\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp\" alt=\"Satisfied &amp; Loyal Patient Base\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base.webp 810w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-300x300.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-150x150.webp 150w, https://health.ideascloud.in/wp-content/uploads/2023/07/Satisfied-Loyal-Patient-Base-768x768.webp 768w\" sizes=\"(max-width: 800px) 100vw, 800px\" />															\n			<h2>Satisfied & Loyal Patient Base</h2>		\n															<img src=\"https://health.ideascloud.in/wp-content/uploads/elementor/thumbs/Heathcare-Industry-Potrait-q9jf8ia32c0g7xknlanlnm9nrek1obuh1ns91712bk.webp\" title=\"Heathcare Industry Potrait\" alt=\"Heathcare Industry Potrait\" loading=\"lazy\" />															\n			<h5>Cases Studies</h5>		\n			<h2>Our Successful Deliverables</h2>		\n		<p>Our proven track record speaks for itself - discover a portfolio of successful deliverables that have empowered healthcare organizations to thrive</p>		\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/therapy-session-in-the-AK6AHJU.jpg\"  alt=\"Couple Problem Solving\">\n                <h3>Couple Problem Solving</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/blonde-haired-psychoanalyst-helping-a-man-with-depression.jpg\"  alt=\"Depression Problem\">\n                <h3>Depression Problem</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n			<img src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/senior-patient-talking-to-psychologist.jpg\"  alt=\"Individual Coaching\">\n                <h3>Individual Coaching</h3>\n                <p></p>\n                <p>Lorem ipsum dolor sit amet, consec adipiscing elit, sed do eiusmod tempor incididunt ut labore</p>\n                <ul></ul>\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco 		\n			<a href=\"#\">\n						View All Cases\n					</a>\n															<img width=\"120\" height=\"120\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/image.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" />															\n			<h2>(+021) 2336 278</h2>Call 24HR / 7Days		\n			<h2>We Provide Essential Services For Upliftment Of Your Brand</h2>		\n		<p>Bring to us what troubles you and let us find the solution for you.</p>		\n			<a href=\"#form\">\n						Contact Us\n					</a>\n			<h5>Our Blog</h5>		\n			<h2>Lates News and Articles</h2>		\n		Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod enim tempor incididunt ut labore et dolore magna aliqua		\n            <article>\n                    <a href=\"https://health.ideascloud.in/wp-admin/post.php?post=1&amp;action=edit\" target=\"_blank\" rel=\"noopener\">\n				edit post\n			</a><a href=\"https://health.ideascloud.in/hello-world/\">\n        </a>\n                    <a href=\"https://health.ideascloud.in/category/uncategorized/\">Uncategorized</a><h3>\n							<a href=\"https://health.ideascloud.in/hello-world/\">Hello world!</a>\n						</h3><p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n                <a href=\"https://health.ideascloud.in/hello-world/\">Read More</a>\n                </article>','Home','','inherit','closed','closed','','156-revision-v1','','','2023-07-19 10:12:40','2023-07-19 04:42:40','',156,'https://health.ideascloud.in/?p=273',0,'revision','',0),(274,1,'2023-07-19 11:05:07','2023-07-19 05:35:07','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2041\" height=\"1621\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp\" alt=\"Health-Cloud-Logo\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp 2041w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-300x238.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1024x813.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-768x610.webp 768w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1536x1220.webp 1536w\" sizes=\"(max-width: 2041px) 100vw, 2041px\" />															\n			<a href=\"tel:%20+91%2093156%2066436\">\n						93156 66436\n					</a>','Header','','publish','closed','closed','','header','','','2023-07-19 11:30:26','2023-07-19 06:00:26','',0,'https://health.ideascloud.in/?post_type=elementor-hf&#038;p=274',0,'elementor-hf','',0),(275,1,'2023-07-19 11:05:07','2023-07-19 05:35:07','','Header','','inherit','closed','closed','','274-revision-v1','','','2023-07-19 11:05:07','2023-07-19 05:35:07','',274,'https://health.ideascloud.in/?p=275',0,'revision','',0),(277,1,'2023-07-19 11:29:49','2023-07-19 05:59:49','','Header','','inherit','closed','closed','','274-revision-v1','','','2023-07-19 11:29:49','2023-07-19 05:59:49','',274,'https://health.ideascloud.in/?p=277',0,'revision','',0),(278,1,'2023-07-19 11:29:50','2023-07-19 05:59:50','','Header','','inherit','closed','closed','','274-revision-v1','','','2023-07-19 11:29:50','2023-07-19 05:59:50','',274,'https://health.ideascloud.in/?p=278',0,'revision','',0),(279,1,'2023-07-19 11:29:50','2023-07-19 05:59:50','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2041\" height=\"1621\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp\" alt=\"Health-Cloud-Logo\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp 2041w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-300x238.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1024x813.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-768x610.webp 768w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1536x1220.webp 1536w\" sizes=\"(max-width: 2041px) 100vw, 2041px\" />															\n			<a href=\"tel:%20+91%2093156%2066436\">\n						93156 66436\n					</a>','Header','','inherit','closed','closed','','274-revision-v1','','','2023-07-19 11:29:50','2023-07-19 05:59:50','',274,'https://health.ideascloud.in/?p=279',0,'revision','',0),(280,1,'2023-07-19 12:03:57','2023-07-19 06:33:57','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2041\" height=\"1621\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp\" alt=\"Health-Cloud-Logo\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp 2041w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-300x238.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1024x813.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-768x610.webp 768w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1536x1220.webp 1536w\" sizes=\"(max-width: 2041px) 100vw, 2041px\" />															\n			<link rel=\"stylesheet\" href=\"https://health.ideascloud.in/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\n									</li>\n								<li>\n										info@whatthehell.co\n									</li>\n								<li>\n										93156 66436\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Other Pages</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Cases\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Contact\n											</a>\n									</li>\n						</ul>\n			<h4>Quick Links</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Term Of Service\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Disclaimer\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Credits\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										FAQ\n											</a>\n									</li>\n						</ul>\n		Get the latest news & updates\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		<p>Copyright © 2023 All rights reserved to <a href=\"https://ideascloud.in/\">Ideas Cloud</a></p>','Footer','','publish','closed','closed','','footer','','','2023-07-19 12:25:18','2023-07-19 06:55:18','',0,'https://health.ideascloud.in/?post_type=elementor-hf&#038;p=280',0,'elementor-hf','',0),(281,1,'2023-07-19 11:30:25','2023-07-19 06:00:25','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2041\" height=\"1621\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp\" alt=\"Health-Cloud-Logo\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp 2041w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-300x238.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1024x813.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-768x610.webp 768w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1536x1220.webp 1536w\" sizes=\"(max-width: 2041px) 100vw, 2041px\" />															\n			<a href=\"tel:%20+91%2093156%2066436\">\n						93156 66436\n					</a>','Header','','inherit','closed','closed','','274-revision-v1','','','2023-07-19 11:30:25','2023-07-19 06:00:25','',274,'https://health.ideascloud.in/?p=281',0,'revision','',0),(282,1,'2023-07-19 11:30:26','2023-07-19 06:00:26','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2041\" height=\"1621\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp\" alt=\"Health-Cloud-Logo\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp 2041w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-300x238.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1024x813.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-768x610.webp 768w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1536x1220.webp 1536w\" sizes=\"(max-width: 2041px) 100vw, 2041px\" />															\n			<a href=\"tel:%20+91%2093156%2066436\">\n						93156 66436\n					</a>','Header','','inherit','closed','closed','','274-revision-v1','','','2023-07-19 11:30:26','2023-07-19 06:00:26','',274,'https://health.ideascloud.in/?p=282',0,'revision','',0),(283,1,'2023-07-19 11:30:26','2023-07-19 06:00:26','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2041\" height=\"1621\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp\" alt=\"Health-Cloud-Logo\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp 2041w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-300x238.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1024x813.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-768x610.webp 768w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1536x1220.webp 1536w\" sizes=\"(max-width: 2041px) 100vw, 2041px\" />															\n			<a href=\"tel:%20+91%2093156%2066436\">\n						93156 66436\n					</a>','Header','','inherit','closed','closed','','274-revision-v1','','','2023-07-19 11:30:26','2023-07-19 06:00:26','',274,'https://health.ideascloud.in/?p=283',0,'revision','',0),(284,1,'2023-07-19 12:03:57','2023-07-19 06:33:57','','Footer','','inherit','closed','closed','','280-revision-v1','','','2023-07-19 12:03:57','2023-07-19 06:33:57','',280,'https://health.ideascloud.in/?p=284',0,'revision','',0),(286,1,'2023-07-19 12:19:01','2023-07-19 06:49:01','','Footer','','inherit','closed','closed','','280-revision-v1','','','2023-07-19 12:19:01','2023-07-19 06:49:01','',280,'https://health.ideascloud.in/?p=286',0,'revision','',0),(287,1,'2023-07-19 12:19:01','2023-07-19 06:49:01','','Footer','','inherit','closed','closed','','280-revision-v1','','','2023-07-19 12:19:01','2023-07-19 06:49:01','',280,'https://health.ideascloud.in/?p=287',0,'revision','',0),(288,1,'2023-07-19 12:19:02','2023-07-19 06:49:02','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2041\" height=\"1621\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp\" alt=\"Health-Cloud-Logo\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp 2041w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-300x238.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1024x813.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-768x610.webp 768w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1536x1220.webp 1536w\" sizes=\"(max-width: 2041px) 100vw, 2041px\" />															\n			<link rel=\"stylesheet\" href=\"https://health.ideascloud.in/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\n									</li>\n								<li>\n										info@whatthehell.co\n									</li>\n								<li>\n										93156 66436\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Other Pages</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Cases\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Contact\n											</a>\n									</li>\n						</ul>\n			<h4>Quick Links</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Term Of Service\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Disclaimer\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Credits\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										FAQ\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<form method=\"post\" data-listed=\"\" data-success-message=\"Successfully listed this email\" data-success-opt-in-message=\"\">\n			<input type=\"hidden\" name=\"double_opt_in\" value=\"no\">\n																<input type=\"email\" aria-label=\"email\" name=\"email\" placeholder=\"Your Email Address\" required />\n						<button type=\"submit\" aria-label=\"submit\" name=\"ekit_mail_chimp\">Subscribe</button>\n			</form>\n		Get the latest news & updates\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Psychology & Counseling Template Kit by BalinizCopyright © 2021 All rights reserved.','Footer','','inherit','closed','closed','','280-revision-v1','','','2023-07-19 12:19:02','2023-07-19 06:49:02','',280,'https://health.ideascloud.in/?p=288',0,'revision','',0),(289,1,'2023-07-19 12:20:24','2023-07-19 06:50:24','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2041\" height=\"1621\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp\" alt=\"Health-Cloud-Logo\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp 2041w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-300x238.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1024x813.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-768x610.webp 768w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1536x1220.webp 1536w\" sizes=\"(max-width: 2041px) 100vw, 2041px\" />															\n			<link rel=\"stylesheet\" href=\"https://health.ideascloud.in/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\n									</li>\n								<li>\n										info@whatthehell.co\n									</li>\n								<li>\n										93156 66436\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Other Pages</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Cases\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Contact\n											</a>\n									</li>\n						</ul>\n			<h4>Quick Links</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Term Of Service\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Disclaimer\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Credits\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										FAQ\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<form method=\"post\" data-listed=\"\" data-success-message=\"Successfully listed this email\" data-success-opt-in-message=\"\">\n			<input type=\"hidden\" name=\"double_opt_in\" value=\"no\">\n																<input type=\"email\" aria-label=\"email\" name=\"email\" placeholder=\"Your Email Address\" required />\n						<button type=\"submit\" aria-label=\"submit\" name=\"ekit_mail_chimp\">Subscribe</button>\n			</form>\n		Get the latest news & updates\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Psychology & Counseling Template Kit by BalinizCopyright © 2021 All rights reserved.','Footer','','inherit','closed','closed','','280-revision-v1','','','2023-07-19 12:20:24','2023-07-19 06:50:24','',280,'https://health.ideascloud.in/?p=289',0,'revision','',0),(290,1,'2023-07-19 12:20:25','2023-07-19 06:50:25','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2041\" height=\"1621\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp\" alt=\"Health-Cloud-Logo\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp 2041w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-300x238.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1024x813.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-768x610.webp 768w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1536x1220.webp 1536w\" sizes=\"(max-width: 2041px) 100vw, 2041px\" />															\n			<link rel=\"stylesheet\" href=\"https://health.ideascloud.in/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\n									</li>\n								<li>\n										info@whatthehell.co\n									</li>\n								<li>\n										93156 66436\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Other Pages</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Cases\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Contact\n											</a>\n									</li>\n						</ul>\n			<h4>Quick Links</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Term Of Service\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Disclaimer\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Credits\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										FAQ\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<form method=\"post\" data-listed=\"\" data-success-message=\"Successfully listed this email\" data-success-opt-in-message=\"\">\n			<input type=\"hidden\" name=\"double_opt_in\" value=\"no\">\n																<input type=\"email\" aria-label=\"email\" name=\"email\" placeholder=\"Your Email Address\" required />\n						<button type=\"submit\" aria-label=\"submit\" name=\"ekit_mail_chimp\">Subscribe</button>\n			</form>\n		Get the latest news & updates\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Psychology & Counseling Template Kit by BalinizCopyright © 2021 All rights reserved.','Footer','','inherit','closed','closed','','280-revision-v1','','','2023-07-19 12:20:25','2023-07-19 06:50:25','',280,'https://health.ideascloud.in/?p=290',0,'revision','',0),(291,1,'2023-07-19 12:20:25','2023-07-19 06:50:25','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2041\" height=\"1621\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp\" alt=\"Health-Cloud-Logo\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp 2041w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-300x238.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1024x813.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-768x610.webp 768w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1536x1220.webp 1536w\" sizes=\"(max-width: 2041px) 100vw, 2041px\" />															\n			<link rel=\"stylesheet\" href=\"https://health.ideascloud.in/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\n									</li>\n								<li>\n										info@whatthehell.co\n									</li>\n								<li>\n										93156 66436\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Other Pages</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Cases\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Contact\n											</a>\n									</li>\n						</ul>\n			<h4>Quick Links</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Term Of Service\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Disclaimer\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Credits\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										FAQ\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<form method=\"post\" data-listed=\"\" data-success-message=\"Successfully listed this email\" data-success-opt-in-message=\"\">\n			<input type=\"hidden\" name=\"double_opt_in\" value=\"no\">\n																<input type=\"email\" aria-label=\"email\" name=\"email\" placeholder=\"Your Email Address\" required />\n						<button type=\"submit\" aria-label=\"submit\" name=\"ekit_mail_chimp\">Subscribe</button>\n			</form>\n		Get the latest news & updates\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		<p>Copyright © 2023 All rights reserved to <a href=\"https://ideascloud.in/\">Ideas Cloud</a></p>','Footer','','inherit','closed','closed','','280-revision-v1','','','2023-07-19 12:20:25','2023-07-19 06:50:25','',280,'https://health.ideascloud.in/?p=291',0,'revision','',0),(292,1,'2023-07-19 12:25:16','2023-07-19 06:55:16','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2041\" height=\"1621\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp\" alt=\"Health-Cloud-Logo\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp 2041w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-300x238.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1024x813.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-768x610.webp 768w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1536x1220.webp 1536w\" sizes=\"(max-width: 2041px) 100vw, 2041px\" />															\n			<link rel=\"stylesheet\" href=\"https://health.ideascloud.in/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\n									</li>\n								<li>\n										info@whatthehell.co\n									</li>\n								<li>\n										93156 66436\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Other Pages</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Cases\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Contact\n											</a>\n									</li>\n						</ul>\n			<h4>Quick Links</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Term Of Service\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Disclaimer\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Credits\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										FAQ\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<form method=\"post\" data-listed=\"\" data-success-message=\"Successfully listed this email\" data-success-opt-in-message=\"\">\n			<input type=\"hidden\" name=\"double_opt_in\" value=\"no\">\n																<input type=\"email\" aria-label=\"email\" name=\"email\" placeholder=\"Your Email Address\" required />\n						<button type=\"submit\" aria-label=\"submit\" name=\"ekit_mail_chimp\">Subscribe</button>\n			</form>\n		Get the latest news & updates\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		<p>Copyright © 2023 All rights reserved to <a href=\"https://ideascloud.in/\">Ideas Cloud</a></p>','Footer','','inherit','closed','closed','','280-revision-v1','','','2023-07-19 12:25:16','2023-07-19 06:55:16','',280,'https://health.ideascloud.in/?p=292',0,'revision','',0),(293,1,'2023-07-19 12:25:17','2023-07-19 06:55:17','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2041\" height=\"1621\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp\" alt=\"Health-Cloud-Logo\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp 2041w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-300x238.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1024x813.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-768x610.webp 768w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1536x1220.webp 1536w\" sizes=\"(max-width: 2041px) 100vw, 2041px\" />															\n			<link rel=\"stylesheet\" href=\"https://health.ideascloud.in/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\n									</li>\n								<li>\n										info@whatthehell.co\n									</li>\n								<li>\n										93156 66436\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Other Pages</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Cases\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Contact\n											</a>\n									</li>\n						</ul>\n			<h4>Quick Links</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Term Of Service\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Disclaimer\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Credits\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										FAQ\n											</a>\n									</li>\n						</ul>\n			<h2>Newsletter</h2>		\n		<form method=\"post\" data-listed=\"\" data-success-message=\"Successfully listed this email\" data-success-opt-in-message=\"\">\n			<input type=\"hidden\" name=\"double_opt_in\" value=\"no\">\n																<input type=\"email\" aria-label=\"email\" name=\"email\" placeholder=\"Your Email Address\" required />\n						<button type=\"submit\" aria-label=\"submit\" name=\"ekit_mail_chimp\">Subscribe</button>\n			</form>\n		Get the latest news & updates\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		<p>Copyright © 2023 All rights reserved to <a href=\"https://ideascloud.in/\">Ideas Cloud</a></p>','Footer','','inherit','closed','closed','','280-revision-v1','','','2023-07-19 12:25:17','2023-07-19 06:55:17','',280,'https://health.ideascloud.in/?p=293',0,'revision','',0),(294,1,'2023-07-19 12:25:18','2023-07-19 06:55:18','<style>/*! elementor - v3.14.0 - 26-06-2023 */\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=\"2041\" height=\"1621\" src=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp\" alt=\"Health-Cloud-Logo\" decoding=\"async\" loading=\"lazy\" srcset=\"https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo.webp 2041w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-300x238.webp 300w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1024x813.webp 1024w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-768x610.webp 768w, https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-1536x1220.webp 1536w\" sizes=\"(max-width: 2041px) 100vw, 2041px\" />															\n			<link rel=\"stylesheet\" href=\"https://health.ideascloud.in/wp-content/plugins/elementor/assets/css/widget-icon-list.min.css\">		<ul>\n							<li>\n										227, 228 D-mall, Shakti Khand-2, Indirapuram Ghaziabad-201014\n									</li>\n								<li>\n										info@whatthehell.co\n									</li>\n								<li>\n										93156 66436\n									</li>\n						</ul>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\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>Other Pages</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Home\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										About Us\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Services\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Cases\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Contact\n											</a>\n									</li>\n						</ul>\n			<h4>Quick Links</h4>		\n					<ul>\n							<li>\n											<a href=\"#\">\n										Privacy Policy\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Term Of Service\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Disclaimer\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										Credits\n											</a>\n									</li>\n								<li>\n											<a href=\"#\">\n										FAQ\n											</a>\n									</li>\n						</ul>\n		Get the latest news & updates\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-social-icons.elementor-grid-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-mobile-0 .elementor-widget-container,.elementor-widget-social-icons.elementor-grid-tablet-0 .elementor-widget-container{line-height:1;font-size:0}.elementor-widget-social-icons:not(.elementor-grid-0):not(.elementor-grid-tablet-0):not(.elementor-grid-mobile-0) .elementor-grid{display:inline-grid}.elementor-widget-social-icons .elementor-grid{grid-column-gap:var(--grid-column-gap,5px);grid-row-gap:var(--grid-row-gap,5px);grid-template-columns:var(--grid-template-columns);justify-content:var(--justify-content,center);justify-items:var(--justify-content,center)}.elementor-icon.elementor-social-icon{font-size:var(--icon-size,25px);line-height:var(--icon-size,25px);width:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)));height:calc(var(--icon-size, 25px) + (2 * var(--icon-padding, .5em)))}.elementor-social-icon{--e-social-icon-icon-color:#fff;display:inline-flex;background-color:#69727d;align-items:center;justify-content:center;text-align:center;cursor:pointer}.elementor-social-icon i{color:var(--e-social-icon-icon-color)}.elementor-social-icon svg{fill:var(--e-social-icon-icon-color)}.elementor-social-icon:last-child{margin:0}.elementor-social-icon:hover{opacity:.9;color:#fff}.elementor-social-icon-android{background-color:#a4c639}.elementor-social-icon-apple{background-color:#999}.elementor-social-icon-behance{background-color:#1769ff}.elementor-social-icon-bitbucket{background-color:#205081}.elementor-social-icon-codepen{background-color:#000}.elementor-social-icon-delicious{background-color:#39f}.elementor-social-icon-deviantart{background-color:#05cc47}.elementor-social-icon-digg{background-color:#005be2}.elementor-social-icon-dribbble{background-color:#ea4c89}.elementor-social-icon-elementor{background-color:#d30c5c}.elementor-social-icon-envelope{background-color:#ea4335}.elementor-social-icon-facebook,.elementor-social-icon-facebook-f{background-color:#3b5998}.elementor-social-icon-flickr{background-color:#0063dc}.elementor-social-icon-foursquare{background-color:#2d5be3}.elementor-social-icon-free-code-camp,.elementor-social-icon-freecodecamp{background-color:#006400}.elementor-social-icon-github{background-color:#333}.elementor-social-icon-gitlab{background-color:#e24329}.elementor-social-icon-globe{background-color:#69727d}.elementor-social-icon-google-plus,.elementor-social-icon-google-plus-g{background-color:#dd4b39}.elementor-social-icon-houzz{background-color:#7ac142}.elementor-social-icon-instagram{background-color:#262626}.elementor-social-icon-jsfiddle{background-color:#487aa2}.elementor-social-icon-link{background-color:#818a91}.elementor-social-icon-linkedin,.elementor-social-icon-linkedin-in{background-color:#0077b5}.elementor-social-icon-medium{background-color:#00ab6b}.elementor-social-icon-meetup{background-color:#ec1c40}.elementor-social-icon-mixcloud{background-color:#273a4b}.elementor-social-icon-odnoklassniki{background-color:#f4731c}.elementor-social-icon-pinterest{background-color:#bd081c}.elementor-social-icon-product-hunt{background-color:#da552f}.elementor-social-icon-reddit{background-color:#ff4500}.elementor-social-icon-rss{background-color:#f26522}.elementor-social-icon-shopping-cart{background-color:#4caf50}.elementor-social-icon-skype{background-color:#00aff0}.elementor-social-icon-slideshare{background-color:#0077b5}.elementor-social-icon-snapchat{background-color:#fffc00}.elementor-social-icon-soundcloud{background-color:#f80}.elementor-social-icon-spotify{background-color:#2ebd59}.elementor-social-icon-stack-overflow{background-color:#fe7a15}.elementor-social-icon-steam{background-color:#00adee}.elementor-social-icon-stumbleupon{background-color:#eb4924}.elementor-social-icon-telegram{background-color:#2ca5e0}.elementor-social-icon-thumb-tack{background-color:#1aa1d8}.elementor-social-icon-tripadvisor{background-color:#589442}.elementor-social-icon-tumblr{background-color:#35465c}.elementor-social-icon-twitch{background-color:#6441a5}.elementor-social-icon-twitter{background-color:#1da1f2}.elementor-social-icon-viber{background-color:#665cac}.elementor-social-icon-vimeo{background-color:#1ab7ea}.elementor-social-icon-vk{background-color:#45668e}.elementor-social-icon-weibo{background-color:#dd2430}.elementor-social-icon-weixin{background-color:#31a918}.elementor-social-icon-whatsapp{background-color:#25d366}.elementor-social-icon-wordpress{background-color:#21759b}.elementor-social-icon-xing{background-color:#026466}.elementor-social-icon-yelp{background-color:#af0606}.elementor-social-icon-youtube{background-color:#cd201f}.elementor-social-icon-500px{background-color:#0099e5}.elementor-shape-rounded .elementor-icon.elementor-social-icon{border-radius:10%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						Icon-facebook\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Twitter\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Instagram\n											</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						Linkedin-in\n											</a>\n			<style>/*! elementor - v3.14.0 - 26-06-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--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: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);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{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;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{flex-grow:0;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{flex-grow:0;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}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		<p>Copyright © 2023 All rights reserved to <a href=\"https://ideascloud.in/\">Ideas Cloud</a></p>','Footer','','inherit','closed','closed','','280-revision-v1','','','2023-07-19 12:25:18','2023-07-19 06:55:18','',280,'https://health.ideascloud.in/?p=294',0,'revision','',0),(295,1,'2023-07-19 13:56:45','2023-07-19 08:26:45','','Health Cloud favicon','','inherit','open','closed','','health-cloud-logo-04','','','2023-07-19 13:56:58','2023-07-19 08:26:58','',58,'https://health.ideascloud.in/wp-content/uploads/2023/07/Health-Cloud-Logo-04.webp',0,'attachment','image/webp',0),(296,1,'2023-07-19 13:57:02','2023-07-19 08:27:02','','Kit Styles: Mindary – Psychology and Counseling Elementor Template Kit','','inherit','closed','closed','','58-revision-v1','','','2023-07-19 13:57:02','2023-07-19 08:27:02','',58,'https://health.ideascloud.in/?p=296',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(11,2,0),(15,3,0),(53,2,0),(58,3,0),(64,2,0),(81,2,0),(96,2,0),(97,2,0),(98,2,0),(102,2,0),(107,2,0),(110,3,0),(112,2,0),(117,3,0),(121,2,0),(127,2,0),(131,2,0),(136,2,0),(137,2,0),(138,2,0),(142,3,0),(162,4,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_520_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_520_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=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,1),(2,2,'elementor_library_type','',0,16),(3,3,'elementor_library_type','',0,5),(4,4,'nav_menu','',0,1);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

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

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_520_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=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'page','page',0),(3,'section','section',0),(4,'Main Menu','main-menu',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_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_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','sitemanager'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:1:{s:64:\"b7f1ce2530c9bb0ada52432f40de8742d91e28e502dcf164b576a22729b44643\";a:4:{s:10:\"expiration\";i:1691772014;s:2:\"ip\";s:14:\"162.158.22.251\";s:2:\"ua\";s:110:\"Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36\";s:5:\"login\";i:1691599214;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','4'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"162.158.23.0\";}'),(19,1,'wp_user-settings','mfold=o&editor=tinymce&libraryContent=browse'),(20,1,'wp_user-settings-time','1689589318'),(21,1,'hfe-popup','dismissed'),(22,1,'header-footer-elementor-rating','delayed-notice'),(23,1,'elementor_introduction','a:4:{s:27:\"ai-get-started-announcement\";b:1;s:7:\"exit_to\";b:1;s:20:\"globals_introduction\";b:1;s:35:\"upload_json_warning_generic_message\";b:1;}'),(24,1,'announcements_user_counter','1'),(25,1,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2023-07-10T12:56:40.173Z\";}'),(26,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\";}'),(27,1,'metaboxhidden_nav-menus','a:2:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:12:\"add-post_tag\";}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

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

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'sitemanager','$P$BEtS1FpA6cH/csGzFzPei2r7vTseP71','sitemanager','wp@dxpsites.com','https://healthcaremarketing.in8.cdn-alpha.com','2023-07-10 12:18:29','',0,'sitemanager');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!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 2024-06-25 20:54:44

ESTRELLA Pharma – Affy Pharma Pvt Ltd

TREPODOX

POWDER FOR ORAL SUSPENSION
30ML (HDPE BOTTLE)

Composition

Cefpodoxime 50mg/5ml

Indications & Uses

UTIs, LRTs

TREPODOX – CV

POWDER FOR ORAL SUSPENSION
30ML (GLASS BOTTLE)

Composition

Cefpodoxime 50mg + Potassium Clavulanate 31.25mg/ 5ml

Indications & Uses

Upper & lower respiratory infections, Uncomplicated skin infections, Urinary Tract Infections

ESTY CLAV

POWDER FOR ORAL SUSPENSION
30ML (GLASS +HDPE BOTTLE)

Composition

Amoxycillin 200mg + Potassium clavulanate 28.50 mg/ 5ml

Indications & Uses

Community Acquired Pneumonia, Acute Exacerbations of Chronic Bronchitis, Upper Respiratory Tract Infections, Urinary Tract Infections

ESTRIXIME – CV

POWDER FOR ORAL SUSPENSION
30ML (GLASS BOTTLE)

Composition

Cefixime 50mg + Potassium clavulanate 31.25mg/5ml

Indications & Uses

Urinary Tract Inefctions, AECB, Otitis Media, Typhoid/p>

ESTRIXIME

POWDER FOR ORAL SUSPENSION
30ML (HDPE BOTTLE)

Composition

Cefixime 50mg/5ml

Indications & Uses

Urinary Tract Inefctions, Gastroenteritis

REOMELL

ORAL SUSPENSION
15 ml

Composition

Azithromycin 200mg/5ml

Indications & Uses

Community Acquired Pneumonia, Acute Exacerbations of Chronic Bronchitis,

TAMEST – DS

ORAL SUSPENSION
60 ml

Composition

Paracetamol 250mg/5ml

Indications & Uses

Fever, Pain

STREFEN

ORAL SUSPENSION
60 ml

Composition

Paracetamol 125mg + Mefenamic Acid 50mg/5ml

Indications & Uses

Pain, Fever

STREFOX

ORAL SUSPENSION
30 ml

Composition

Ofloxacin 50mg/5ml

Indications & Uses

Acute exacerbations of chronic Bronchitis, Diarrhoea

TAMACET-P

SYRUP
60 ml

Composition

Paracetamol 125mg + PPH 5mg + Cetirizine HCI 2mg/5ml

Indications & Uses

Fever, common cold & Flu

HEPTRELL

ORAL SUSPENSION
200ml

Composition

Cyproheptadine HCI 2mg + Tricholine citrate 0.275mg/5ml

Indications & Uses

Stimulate Apetite, Induces Weight Gain, Cure Allergies

TREP-DSR

CAPSULES ( HARD GELATIN)
10X10 (Alu-Alu)

Composition

Pantoprazole 40mg (EC) + Domperidone 30mg (SR)

Indications & Uses

GERD, Dyspepsia, Acid Peptic Disorders, Gastritis

RALE-DSR

CAPSULES ( HARD GELATIN)
11X10 (Alu-Alu)

Composition

Rabeprazole 20mg (EC) + Domperidone SR

Indications & Uses

GERD, Dyspepsia, Acid Peptic Disorders, Gastritis

STRETOP-40

INJECTION
40ml

Composition

Pantoprazole Sodium 40mg + NaCL

Indications & Uses

Acid-peptic disorders in hospitalized patients, Zollinger – Ellison Syndrome, Treatment of GERD Associated with Erasive Esophagitis, GL Bleed

DIMACID

SUSPENSION
170ml

Composition

Activated Dimethicone 25mg + Magnesium Hydroxide 200mg+ Aluminium Hydroxide Gel 200mg/10ml

Indications & Uses

Heartburn, Acid Indigestion

ELLAZYME

SYRUP
200ml

Composition

Alpha Amylase (1:2000) 50mg, Pepsin(1:3000) 10mg/5ml

Indications & Uses

Dyspepsia, Flatulence, Anorexia, Pancreatic Insufficiency

ARBOLL-Z

CAPSULES (HARD GELATIN)
10X3X10

Composition

Vitamin C 75mg + Vitamin B12 5mcg + Carbonyl Iron 100mg + Folic Acid 1.5mg + Zinc Sulphate 61.8mg

Indications & Uses

Hyphocromic Anemia in Pregnancy, Chronic and / or Acute Blood Loss, Post-gynaesurgery, Iron Deficiency Anemia

EST-D3 60K

CAPSULES (SOFT GELATIN)
10X1X4

Composition

Cholecalciferol 60000 UI

Indications & Uses

Osteoporosis, Osteoarthritis, Musculoskeletal Pain, Type- 2 Diabetes, Menstrual Irregularities, Pre-eclampsia, IUGR

STREBONA

ORAL SUSPENSION
200ml

Composition

Calcium Carbonate 625mg, Vitamin D3 125 IU/5ml

Indications & Uses

Osteomalacia, Osteoporosis, Fractures, Premenstrual Syndrome

STREFE-III

SYRUP (IRON TONIC)
300 ml

Composition

Iron (III) Hydroxide Polymaltose 50mg, Folic Acid 0.5mg/15ml

Indications & Uses

Pregnancy and lactation, Iron Deficiency Anaemia, Anaemia due to Excessive Haemorrhage, Anaemia Associated with Infections and Malignant Disease

STRECIUM

CAPSULES (SOFT GELATIN)
5X2X15

Composition

Calcitriol 0.25mcg + Calcium Carbonate 500mg + Zinc Sulphate 7.5mg

Indications & Uses

Osteoporosis, Hypoparathyroidism, Pregnancy & Lactation, Premenstrual Syndrome

ESTRE-SPAS

TABLETS
20X10

Composition

Mefenamic Acid 250mg + Dicyclomine HCI 10mg

Indications & Uses

Dysmenorrhea, Irritable Bowel Syndrome, Colic and Bladder Spasm, Abdominal Pain

TAMEST-A

TABLETS (BLISTERS)
20X10

Composition

Nimeulide 100mg + Paracetamo; 325mg

Indications & Uses

Arthritis Pain, Soft Tissue Trauma Including Sprains, Musculoskeletal Pain, Pain Following Dental Extraction

PARTRA FORTE

TABLETS

20X10

Composition

Tramadol 37.5mg + Paracetamol 325mg

Indications & Uses

Chronic Back Pain, Osteoarthritis, Postoperative Pain

UMRELY GEL

GEL
30g

Composition

Diclofenac Diethylamine 1.16% w/w + Oleum Linseed Oil 3 % w/w + Menthol 5% w/w +Methyl Salicylate 10% w/w

Indications & Uses

Sprains & Strains, Lower Back Pain, Joint Pain, Knee Pain

MOISTACT

CREAM
20g

Composition

Urea 10% +Lactic Acid 10% + Propylene Glycol 10% + Liquid Paraffin 10%

Indications & Uses

Foot Cracks, Keratolytic

BELODIP

OINTMENT
15g

Composition

Clotrimazole 1% w/w + Beclomethasone Dipropionate 0.025% w/w + Neomycin 0.5% w/w

Indications & Uses

Eczema, Psoriasis, Corticosteroid Responsive Dermatoses

MIN-DAND

LOTION
100 ml

Composition

Ketoconazole 2% w/v

Indications & Uses

Pityriasis, Dandruff

MIN-DAND-Z

LOTION
100 ml

Composition

Ketoconazole Shampoo 2% w/v + ZPTO 1% w/v

Indications & Uses

Pityriasis, Dandruff

MIN-DAND

SOAP
75g

Composition

Ketoconazole 1% w/w

Indications & Uses

Tinea Versicolor, Prophylaxis of Pityriasis Versicolor

FLUTRELLA

TABLETS
20X1X1

Composition

Fluconazole 200mg

Indications & Uses

Vaginal Candidiasis, Brochopulmonary Infections, Candiduria, Tinea Pedis, Corposis, Cruris, Versicolor

ESTRAVIT

SYRUP
200ml

Composition

L-Iysine HCI 25mg + Vitamin B1 2.5mg + Vitamin B2 2.5mg + Vitamin B6 0.75mg + D-panthenol 3mg +Niacinamide 25mg + Mecobalamin 2mcg/10ml

Indications & Uses

Sub-optimal Growth, Poor Weight Gain, Malnutrition, Prolonged Illness

LYCOSTER PLUS

SYRUP
225ml

Composition

Each 10ml Contains: Lycopene 6% 1000mcg + Vitamin A Palmitate 2500 IU + Vitamin E 10 IU + Ascorbic Acid 50mg + Selenium (as Sodium Selenate) 35mcg + Zinc (As Zinc Gluconate) 3mg + Manganese (as Manganese Gluconate) 2mg + Iodine ( As Potassium Iodine) 100mcg + Copper (As Copper Sulphate0 500mcg + Thiamine HCI 2mg + Riboflavine 3mg + Pyridoxine HCI 1.5mg

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

OSERON

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Antioxidant, Multivitamin & Multiminerals

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

GERMELLA

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Vitamin E (Natural) 400 IU + Wheat Germ Oil 100mg + Omega 3 Fatty Acids 30mg

Indications & Uses

Ulcerative colitis, Metabolic Syndrome, Rheumatoid Arthritis, Type-2 Diabetes, Cardiovascular Diseases

LYCOSTER GOLD

CAPSULES (SOFT GELATIN)
10X1X10

Composition

Each SG Contains Lycopene 6% 2000 IU + Vitamin A 2500 IU + Vitamin E Acetate 10 IU + Vitamin C 50 mg + Zinc sulphate Monohydrate 27.45mg + Selenium Dioxide 70mcg

Indications & Uses

Idiopathic Male Infertility, Pre-eclampsia, Prostate Cancer, Cardiovascular Diseases, Diabetes Mellitus

OSERON -G

CAPSULES (SOFT GELATIN)
10X1X11

Composition

Ginseng + Multivitamin + Multimineral

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

OSERON -G

CAPSULES (SOFT GELATIN)
10X1X11

Composition

Ginseng + Multivitamin + Multimineral

Indications & Uses

Tiredness, Stress, Feeling of Weakness, Vitality Deficiency

ESTRIXIME-200 LB

TABLETS (Alu-Alu)
20X10

Composition

Cefixime 200mg + Lactic Acid Bacilus 2.5 billion spores

Indications & Uses

Otitis Media, Pharyngitis & Tonsillitis, Uncomplicated Urinary Tract Infections, Acute Exacerbations of Chronic Bronchitis, Enteric Fever

ESTRIXIME-CV-325

TABLETS (Alu-Alu)
10X1X6

Composition

Cefixime 200mg + Potassium Clavulanate 125mg

Indications & Uses

Respiratory Tract Infections, Urinary Tract Infections, Skin & Skin Structure Infections

ESTY CLAV-625 LB

TABLETS (Alu-Alu)
10X1X6

Composition

Amoxycillin 500mg + Potassium Clavulanate 125mg

Indications & Uses

Respiratory Tract Infections, Community Acquired Pneumonia, Gynaecological Infections, Acute Exacerbations of Chronic Bronchitis, Skin and Soft Tissue Infections

FLOXEST

TABLETS (Blister)
20X10

Composition

Ofloxacin 200mg + Ornidazole 500mg

Indications & Uses

Surgical ions, Diarrheas of Mixed Etiology, Gynaecological Infections, Orofacial and Dental Infections

VOFLOX-500

TABLETS
10X10

Composition

Levofloxacin 500mg

Indications & Uses

Acute Bacterial Sinusitis, Acute Bacterial Exacerbations of Chronic Bronchitis, Skin & Skin Structure Infections, Chronic Bacterial Prostatitis, Urinary Tract Infections

FLOXEST – O

TABLETS (Alu-Alu)
20X10

Composition

Cefixime 200mg + Ofloxacin 200mg

Indications & Uses

Community Acquired Pneumonia, Multiple Drug Resistant-TB, Typhoid

FLOXEST

TABLETS (Alu-Alu)
20X10

Composition

Ofloxacin 200mg

Indications & Uses

Community Acquired Pneumonia, Multiple Drug Resistant-TB, Typhoid

ESTY CLAV- 1.2

INJECTIONS
1.2g

Composition

Amoxycillin 1000mg + Potassium Clavulanate 200mg + WFI

Indications & Uses

Community Acquired Pneumonia, Gynaecological Infections, Upper Respiratory Tract Infections, Skin and Soft Tissue Infections, Urinary Tract Infections, Acute Exacerbations of Chronic Bronchitis

TRELLON-SB 1.5

INJECTIONS
1.5g

Composition

Ceftriaxone 1000mg + Sulbactam 500mg + WFI

Indications & Uses

Gynaecological Infections, Lower Respiratory Tract Infections, Intra-abdominal Infections with Aerobic Organisms, Surgical Prophylaxis

TRELLON-TZ 1.125

INJECTIONS
1.125gm

Composition

Ceftriaxone 1000mg + Tazobactam 500 mg + WFI

Indications & Uses

Bone & Joint Infections, Intra-abdominal Infections, Bacterial Meningitis, Pre-operative Surgical Prophylaxis

RELLAM

INJECTIONS
1gm

Composition

Meropenem 1gm + WFI

Indications & Uses

Complicated Intra-abdominal Infection (cIAI), Complicated Skin & Skin Structure Infections (cSSSI), Bacterial Meningitis, Noscocomial Pneumonia

TRELIN-Z 4.5

INJECTIONS
4.5gm

Composition

Piperacillin 4000mg + Tazobactam 500mg + WFI

Indications & Uses

Intra-abdominal Infections, Complicated Urinary Tract Infections, Febrile Neutropenia, Lower Respiratory Tract Infections

TRELIN-Z 4.5

INJECTIONS
4.5gm

Composition

Piperacillin 4000mg + Tazobactam 500mg + WFI

Indications & Uses

Intra-abdominal Infections, Complicated Urinary Tract Infections, Febrile Neutropenia, Lower Respiratory Tract Infections

BUTRELLA

SYRUP

100ml

Composition

Ambroxol HCI 15mg + Guaiphensin 50mg + Terbutaline Sulphate 1.5mg + Mentholated Base/5ml

Indications & Uses

Bronchitis, Productive Cough, Emphysema, Bronchial Asthma

BUTRELLA-BR

SYRUP

100ml

Composition

Terbutaline Sulphate 1.25mg + Bromhexine HCI 4mg + Guaiphenesin 50mg + Methalated Base/5ml

Indications & Uses

Acute Cough, Abnormal Mucus Secretion, Productive Cough

DEXTRIN

SYRUP
100ml

Composition

Dextromethorphan Hydrobromide 10mg + Phenylpherine 5 mg + Cetrizine 5mg + Mentholated Base/5ml

Indications & Uses

Commom Cold and Flu, Nasal Congestion, Sore Throat

VOTRELL-M

TABLETS (Alu-Alu)
20X10

Composition

Levocetirizine 5mg + Montelukast 10mg

Indications & Uses

Allergic Rhinitis, Nasal Congestion, Asthma

VOTRELL

TABLETS (Alu-Alu)
20X11

Composition

Levocetirizine 5mg

Indications & Uses

Chronic Idiopathic Urticaria (CIU), Seasonal Allergic Rhinitis (SAR), Perennial Allergic Rhinitis (PAR)

Arrange A Callback
[]
1 Step 1
Full Name
Telephone
Departmentyour full name
Postal Address
Message
0 /
Previous
Next
Shopping Basket